@progress/kendo-angular-treelist 19.3.0-develop.3 → 19.3.0-develop.31
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/common/id.service.d.ts +1 -1
- package/esm2022/column-menu/column-menu.component.mjs +3 -3
- package/esm2022/common/id.service.mjs +1 -1
- package/esm2022/filtering/cell/autocomplete-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/boolean-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/date-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/filter-cell-operators.component.mjs +1 -2
- package/esm2022/filtering/cell/numeric-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/cell/string-filter-cell.component.mjs +1 -1
- package/esm2022/filtering/menu/boolean-filter-menu.component.mjs +1 -2
- package/esm2022/filtering/menu/date-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/date-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu-input-wrapper.component.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu.component.mjs +3 -3
- package/esm2022/filtering/menu/numeric-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/numeric-filter-menu.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu-input.component.mjs +1 -1
- package/esm2022/filtering/menu/string-filter-menu.component.mjs +1 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/utils.mjs +0 -4
- package/fesm2022/progress-kendo-angular-treelist.mjs +8 -12
- package/package.json +19 -19
- package/schematics/ngAdd/index.js +3 -3
- package/utils.d.ts +0 -4
package/common/id.service.d.ts
CHANGED
@@ -10,7 +10,7 @@ export declare class IdService {
|
|
10
10
|
private prefix;
|
11
11
|
constructor();
|
12
12
|
cellId(rowIndex: number, colIndex: number): string;
|
13
|
-
|
13
|
+
treelistId(): string;
|
14
14
|
selectionCheckboxId(itemIndex: any): string;
|
15
15
|
selectAllCheckboxId(): string;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<IdService, never>;
|
@@ -23,8 +23,8 @@ import { IdService } from '../common/id.service';
|
|
23
23
|
import { ContextService } from '../common/provider.service';
|
24
24
|
import { ColumnMenuErrorMessages } from '../common/error-messages';
|
25
25
|
import { Subscription } from 'rxjs';
|
26
|
-
import { replaceMessagePlaceholder } from '../utils';
|
27
26
|
import { MenuTabbingService } from '../filtering/menu/menu-tabbing.service';
|
27
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
28
28
|
import * as i0 from "@angular/core";
|
29
29
|
import * as i1 from "../navigation/navigation.service";
|
30
30
|
import * as i2 from "../common/single-popup.service";
|
@@ -33,7 +33,7 @@ import * as i4 from "./column-menu.service";
|
|
33
33
|
import * as i5 from "../common/id.service";
|
34
34
|
const POPUP_CLASSES = 'k-grid-columnmenu-popup k-column-menu';
|
35
35
|
let id = 0;
|
36
|
-
const getId = (
|
36
|
+
const getId = (treelistId) => `${treelistId}-column-menu-${id++}`;
|
37
37
|
/**
|
38
38
|
* Represents the [column menu]({% slug columnmenu_treelist %}) component of the TreeList.
|
39
39
|
* Use this component to display and manage column menu options for a TreeList column.
|
@@ -219,7 +219,7 @@ export class ColumnMenuComponent {
|
|
219
219
|
}));
|
220
220
|
const popupAriaElement = this.popupRef.popupElement.querySelector('.k-grid-columnmenu-popup');
|
221
221
|
if (popupAriaElement) {
|
222
|
-
const popupId = getId(this.idService?.
|
222
|
+
const popupId = getId(this.idService?.treelistId());
|
223
223
|
this.renderer.setAttribute(popupAriaElement, 'id', popupId);
|
224
224
|
this.renderer.setAttribute(popupAriaElement, 'role', 'dialog');
|
225
225
|
this.renderer.setAttribute(popupAriaElement, 'aria-label', this.columnMenuTitle);
|
@@ -9,9 +9,9 @@ import { AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
|
|
9
9
|
import { ColumnComponent } from '../../columns/column.component';
|
10
10
|
import { FilterService } from '../filter.service';
|
11
11
|
import { BaseFilterCellComponent, localizeOperators } from '../base-filter-cell.component';
|
12
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
13
12
|
import { FilterInputDirective } from '../filter-input.directive';
|
14
13
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "../filter.service";
|
17
17
|
import * as i2 from "../../columns/column.component";
|
@@ -7,10 +7,10 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { BooleanFilterComponent } from '../boolean-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
13
12
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../filter.service";
|
16
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -7,10 +7,10 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { DatePickerComponent, DatePickerCustomMessagesComponent } from '@progress/kendo-angular-dateinputs';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { DateFilterComponent } from '../date-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
13
12
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../filter.service";
|
16
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -4,12 +4,11 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, EventEmitter, HostBinding, Input, Output, ViewChild } from '@angular/core';
|
6
6
|
import { NgIf } from '@angular/common';
|
7
|
-
import { Keys } from '@progress/kendo-angular-common';
|
7
|
+
import { Keys, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
8
8
|
import { DropDownListComponent } from '@progress/kendo-angular-dropdowns';
|
9
9
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
10
10
|
import { filterClearIcon, filterIcon } from '@progress/kendo-svg-icons';
|
11
11
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
12
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
13
12
|
import { ColumnComponent } from '../../columns/column.component';
|
14
13
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
15
14
|
import * as i0 from "@angular/core";
|
@@ -7,10 +7,10 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { NumericTextBoxComponent, NumericTextBoxCustomMessagesComponent } from '@progress/kendo-angular-inputs';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { NumericFilterComponent } from '../numeric-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
12
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../filter.service";
|
16
16
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -7,11 +7,11 @@ import { ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
7
7
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
8
8
|
import { FilterService } from '../filter.service';
|
9
9
|
import { StringFilterComponent } from '../string-filter.component';
|
10
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
11
10
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
11
|
import { FocusableDirective } from '../../navigation/focusable.directive';
|
13
12
|
import { FilterCellWrapperComponent } from './filter-cell-wrapper.component';
|
14
13
|
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "../filter.service";
|
17
17
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -4,12 +4,11 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import { Component, Input, HostBinding, ViewChild, ElementRef, ViewChildren, QueryList } from '@angular/core';
|
6
6
|
import { NgFor } from '@angular/common';
|
7
|
-
import { guid } from '@progress/kendo-angular-common';
|
7
|
+
import { guid, replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
8
8
|
import { RadioButtonComponent } from '@progress/kendo-angular-inputs';
|
9
9
|
import { FilterService } from '../filter.service';
|
10
10
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
11
11
|
import { BooleanFilterComponent } from '../boolean-filter.component';
|
12
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
13
12
|
import { BooleanFilterRadioButtonDirective } from './filter-radio-button.directive';
|
14
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
15
14
|
import * as i0 from "@angular/core";
|
@@ -11,8 +11,8 @@ import { SinglePopupService } from '../../common/single-popup.service';
|
|
11
11
|
import { FilterInputDirective } from '../filter-input.directive';
|
12
12
|
import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
|
13
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
15
14
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
15
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "../../common/single-popup.service";
|
18
18
|
import * as i2 from "@progress/kendo-angular-l10n";
|
@@ -12,7 +12,7 @@ import { setFilter, logicOperators } from '../base-filter-cell.component';
|
|
12
12
|
import { DateFilterMenuInputComponent } from './date-filter-menu-input.component';
|
13
13
|
import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
|
14
14
|
import { MenuTabbingService } from './menu-tabbing.service';
|
15
|
-
import { replaceMessagePlaceholder } from '
|
15
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "@progress/kendo-angular-l10n";
|
18
18
|
/**
|
@@ -8,8 +8,8 @@ import { FilterService } from '../filter.service';
|
|
8
8
|
import { FilterInputWrapperComponent } from "../filter-input-wrapper.component";
|
9
9
|
import { MenuTabbingService } from './menu-tabbing.service';
|
10
10
|
import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
|
11
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
12
11
|
import { ContextService } from '../../common/provider.service';
|
12
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
13
13
|
import * as i0 from "@angular/core";
|
14
14
|
import * as i1 from "../../common/provider.service";
|
15
15
|
/**
|
@@ -13,7 +13,7 @@ import { FilterMenuContainerComponent } from './filter-menu-container.component'
|
|
13
13
|
import { ContextService } from '../../common/provider.service';
|
14
14
|
import { NavigationService } from '../../navigation/navigation.service';
|
15
15
|
import { IdService } from '../../common/id.service';
|
16
|
-
import { replaceMessagePlaceholder } from '
|
16
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
17
17
|
import * as i0 from "@angular/core";
|
18
18
|
import * as i1 from "../filter.service";
|
19
19
|
import * as i2 from "../../common/single-popup.service";
|
@@ -21,7 +21,7 @@ import * as i3 from "../../common/provider.service";
|
|
21
21
|
import * as i4 from "../../navigation/navigation.service";
|
22
22
|
import * as i5 from "../../common/id.service";
|
23
23
|
let id = 0;
|
24
|
-
const getId = (
|
24
|
+
const getId = (treelistId) => `${treelistId}-filter-menu-${id++}`;
|
25
25
|
/**
|
26
26
|
* @hidden
|
27
27
|
*/
|
@@ -95,7 +95,7 @@ export class FilterMenuComponent {
|
|
95
95
|
}));
|
96
96
|
const popupAriaElement = this.popupRef.popupElement.querySelector('.k-grid-filter-popup');
|
97
97
|
if (popupAriaElement) {
|
98
|
-
const popupId = getId(this.idService?.
|
98
|
+
const popupId = getId(this.idService?.treelistId());
|
99
99
|
this.renderer.setAttribute(popupAriaElement, 'id', popupId);
|
100
100
|
this.renderer.setAttribute(popupAriaElement, 'role', 'dialog');
|
101
101
|
this.renderer.setAttribute(popupAriaElement, 'aria-label', this.filterLabel);
|
@@ -10,7 +10,7 @@ import { FilterInputDirective } from '../filter-input.directive';
|
|
10
10
|
import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
|
11
11
|
import { MenuTabbingService } from './menu-tabbing.service';
|
12
12
|
import { ContextService } from '../../common/provider.service';
|
13
|
-
import { replaceMessagePlaceholder } from '
|
13
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
14
14
|
import * as i0 from "@angular/core";
|
15
15
|
import * as i1 from "../../common/provider.service";
|
16
16
|
/**
|
@@ -11,8 +11,8 @@ import { NumericFilterComponent } from '../numeric-filter.component';
|
|
11
11
|
import { setFilter, logicOperators } from '../base-filter-cell.component';
|
12
12
|
import { NumericFilterMenuInputComponent } from './numeric-filter-menu-input.component';
|
13
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
15
14
|
import { FilterMenuDropDownListDirective } from './filter-menu-dropdownlist.directive';
|
15
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
16
16
|
import * as i0 from "@angular/core";
|
17
17
|
import * as i1 from "@progress/kendo-angular-l10n";
|
18
18
|
/**
|
@@ -8,10 +8,10 @@ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
8
8
|
import { ColumnComponent } from "../../columns/column.component";
|
9
9
|
import { FilterService } from '../filter.service';
|
10
10
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
11
|
-
import { replaceMessagePlaceholder } from '../../utils';
|
12
11
|
import { FilterInputDirective } from '../filter-input.directive';
|
13
12
|
import { FilterMenuInputWrapperComponent } from './filter-menu-input-wrapper.component';
|
14
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "@progress/kendo-angular-l10n";
|
17
17
|
import * as i2 from "@angular/forms";
|
@@ -11,7 +11,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
11
11
|
import { setFilter, logicOperators } from '../base-filter-cell.component';
|
12
12
|
import { StringFilterMenuInputComponent } from './string-filter-menu-input.component';
|
13
13
|
import { MenuTabbingService } from './menu-tabbing.service';
|
14
|
-
import { replaceMessagePlaceholder } from '
|
14
|
+
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
15
15
|
import * as i0 from "@angular/core";
|
16
16
|
import * as i1 from "@progress/kendo-angular-l10n";
|
17
17
|
/**
|
@@ -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: '19.3.0-develop.
|
13
|
+
publishDate: 1754576782,
|
14
|
+
version: '19.3.0-develop.31',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
package/esm2022/utils.mjs
CHANGED
@@ -111,7 +111,3 @@ export const cancelAnimationFrame = wnd.cancelAnimationFrame || wnd.msCancelRequ
|
|
111
111
|
/** @hidden */
|
112
112
|
export const isColumnEditable = (column, formGroup) => column.isEditable !== false &&
|
113
113
|
(column.editTemplate || (formGroup && column.field && formGroup.get(column.field)));
|
114
|
-
/**
|
115
|
-
* @hidden
|
116
|
-
*/
|
117
|
-
export const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
@@ -5,7 +5,7 @@
|
|
5
5
|
import * as i0 from '@angular/core';
|
6
6
|
import { Directive, Optional, EventEmitter, Injectable, QueryList, Input, ContentChildren, ContentChild, InjectionToken, forwardRef, Component, SkipSelf, Host, isDevMode, SecurityContext, Inject, Output, HostBinding, Pipe, ViewChild, ViewChildren, Self, HostListener, NgZone, TemplateRef, ChangeDetectionStrategy, ViewEncapsulation, NgModule } from '@angular/core';
|
7
7
|
import * as i1$4 from '@progress/kendo-angular-common';
|
8
|
-
import { isDocumentAvailable, isPresent as isPresent$1, hasClasses as hasClasses$1, Keys, anyChanged, isChanged as isChanged$1, ResizeSensorComponent, EventsOutsideAngularDirective, KendoInput, guid, DraggableDirective, TemplateContextDirective, hasObservers, ResizeBatchService } from '@progress/kendo-angular-common';
|
8
|
+
import { isDocumentAvailable, isPresent as isPresent$1, hasClasses as hasClasses$1, Keys, anyChanged, isChanged as isChanged$1, ResizeSensorComponent, EventsOutsideAngularDirective, KendoInput, replaceMessagePlaceholder, guid, DraggableDirective, TemplateContextDirective, hasObservers, ResizeBatchService } from '@progress/kendo-angular-common';
|
9
9
|
import * as i2 from '@progress/kendo-angular-icons';
|
10
10
|
import { IconWrapperComponent, IconsService, KENDO_ICONS } from '@progress/kendo-angular-icons';
|
11
11
|
import { DatePickerComponent, DatePickerCustomMessagesComponent, CalendarDOMService, CenturyViewService, DecadeViewService, MonthViewService, YearViewService, NavigationService as NavigationService$1 } from '@progress/kendo-angular-dateinputs';
|
@@ -49,8 +49,8 @@ const packageMetadata = {
|
|
49
49
|
productName: 'Kendo UI for Angular',
|
50
50
|
productCode: 'KENDOUIANGULAR',
|
51
51
|
productCodes: ['KENDOUIANGULAR'],
|
52
|
-
publishDate:
|
53
|
-
version: '19.3.0-develop.
|
52
|
+
publishDate: 1754576782,
|
53
|
+
version: '19.3.0-develop.31',
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
55
55
|
};
|
56
56
|
|
@@ -694,10 +694,6 @@ const cancelAnimationFrame = wnd.cancelAnimationFrame || wnd.msCancelRequestAnim
|
|
694
694
|
/** @hidden */
|
695
695
|
const isColumnEditable = (column, formGroup) => column.isEditable !== false &&
|
696
696
|
(column.editTemplate || (formGroup && column.field && formGroup.get(column.field)));
|
697
|
-
/**
|
698
|
-
* @hidden
|
699
|
-
*/
|
700
|
-
const replaceMessagePlaceholder = (message, name, value) => message.replace(new RegExp(`{\\s*${name}\\s*}`, 'g'), value);
|
701
697
|
|
702
698
|
/**
|
703
699
|
* Represents the filter-cell template for the TreeList.
|
@@ -5160,7 +5156,7 @@ class IdService {
|
|
5160
5156
|
cellId(rowIndex, colIndex) {
|
5161
5157
|
return `${this.prefix}-r${rowIndex}c${colIndex}`;
|
5162
5158
|
}
|
5163
|
-
|
5159
|
+
treelistId() {
|
5164
5160
|
return this.prefix;
|
5165
5161
|
}
|
5166
5162
|
selectionCheckboxId(itemIndex) {
|
@@ -14124,7 +14120,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
14124
14120
|
|
14125
14121
|
const POPUP_CLASSES = 'k-grid-columnmenu-popup k-column-menu';
|
14126
14122
|
let id$1 = 0;
|
14127
|
-
const getId$1 = (
|
14123
|
+
const getId$1 = (treelistId) => `${treelistId}-column-menu-${id$1++}`;
|
14128
14124
|
/**
|
14129
14125
|
* Represents the [column menu]({% slug columnmenu_treelist %}) component of the TreeList.
|
14130
14126
|
* Use this component to display and manage column menu options for a TreeList column.
|
@@ -14310,7 +14306,7 @@ class ColumnMenuComponent {
|
|
14310
14306
|
}));
|
14311
14307
|
const popupAriaElement = this.popupRef.popupElement.querySelector('.k-grid-columnmenu-popup');
|
14312
14308
|
if (popupAriaElement) {
|
14313
|
-
const popupId = getId$1(this.idService?.
|
14309
|
+
const popupId = getId$1(this.idService?.treelistId());
|
14314
14310
|
this.renderer.setAttribute(popupAriaElement, 'id', popupId);
|
14315
14311
|
this.renderer.setAttribute(popupAriaElement, 'role', 'dialog');
|
14316
14312
|
this.renderer.setAttribute(popupAriaElement, 'aria-label', this.columnMenuTitle);
|
@@ -14538,7 +14534,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
14538
14534
|
}] } });
|
14539
14535
|
|
14540
14536
|
let id = 0;
|
14541
|
-
const getId = (
|
14537
|
+
const getId = (treelistId) => `${treelistId}-filter-menu-${id++}`;
|
14542
14538
|
/**
|
14543
14539
|
* @hidden
|
14544
14540
|
*/
|
@@ -14612,7 +14608,7 @@ class FilterMenuComponent {
|
|
14612
14608
|
}));
|
14613
14609
|
const popupAriaElement = this.popupRef.popupElement.querySelector('.k-grid-filter-popup');
|
14614
14610
|
if (popupAriaElement) {
|
14615
|
-
const popupId = getId(this.idService?.
|
14611
|
+
const popupId = getId(this.idService?.treelistId());
|
14616
14612
|
this.renderer.setAttribute(popupAriaElement, 'id', popupId);
|
14617
14613
|
this.renderer.setAttribute(popupAriaElement, 'role', 'dialog');
|
14618
14614
|
this.renderer.setAttribute(popupAriaElement, 'aria-label', this.filterLabel);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-treelist",
|
3
|
-
"version": "19.3.0-develop.
|
3
|
+
"version": "19.3.0-develop.31",
|
4
4
|
"description": "Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
"package": {
|
25
25
|
"productName": "Kendo UI for Angular",
|
26
26
|
"productCode": "KENDOUIANGULAR",
|
27
|
-
"publishDate":
|
27
|
+
"publishDate": 1754576782,
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
29
29
|
}
|
30
30
|
},
|
@@ -36,27 +36,27 @@
|
|
36
36
|
"@angular/platform-browser": "16 - 20",
|
37
37
|
"@progress/kendo-data-query": "^1.0.0",
|
38
38
|
"@progress/kendo-drawing": "^1.21.0",
|
39
|
-
"@progress/kendo-licensing": "^1.
|
40
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
41
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
42
|
-
"@progress/kendo-angular-dateinputs": "19.3.0-develop.
|
43
|
-
"@progress/kendo-angular-dropdowns": "19.3.0-develop.
|
44
|
-
"@progress/kendo-angular-excel-export": "19.3.0-develop.
|
45
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
46
|
-
"@progress/kendo-angular-inputs": "19.3.0-develop.
|
47
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
48
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
49
|
-
"@progress/kendo-angular-label": "19.3.0-develop.
|
50
|
-
"@progress/kendo-angular-pager": "19.3.0-develop.
|
51
|
-
"@progress/kendo-angular-pdf-export": "19.3.0-develop.
|
52
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
53
|
-
"@progress/kendo-angular-toolbar": "19.3.0-develop.
|
54
|
-
"@progress/kendo-angular-utils": "19.3.0-develop.
|
39
|
+
"@progress/kendo-licensing": "^1.7.0",
|
40
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.31",
|
41
|
+
"@progress/kendo-angular-common": "19.3.0-develop.31",
|
42
|
+
"@progress/kendo-angular-dateinputs": "19.3.0-develop.31",
|
43
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.31",
|
44
|
+
"@progress/kendo-angular-excel-export": "19.3.0-develop.31",
|
45
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.31",
|
46
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.31",
|
47
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.31",
|
48
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.31",
|
49
|
+
"@progress/kendo-angular-label": "19.3.0-develop.31",
|
50
|
+
"@progress/kendo-angular-pager": "19.3.0-develop.31",
|
51
|
+
"@progress/kendo-angular-pdf-export": "19.3.0-develop.31",
|
52
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.31",
|
53
|
+
"@progress/kendo-angular-toolbar": "19.3.0-develop.31",
|
54
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.31",
|
55
55
|
"rxjs": "^6.5.3 || ^7.0.0"
|
56
56
|
},
|
57
57
|
"dependencies": {
|
58
58
|
"tslib": "^2.3.1",
|
59
|
-
"@progress/kendo-angular-schematics": "19.3.0-develop.
|
59
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.31",
|
60
60
|
"@progress/kendo-common": "^1.0.1",
|
61
61
|
"@progress/kendo-file-saver": "^1.0.0"
|
62
62
|
},
|
@@ -4,13 +4,13 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TreeListModule', package: 'treelist', peerDependencies: {
|
6
6
|
// peer dep of the dropdowns
|
7
|
-
'@progress/kendo-angular-treeview': '19.3.0-develop.
|
7
|
+
'@progress/kendo-angular-treeview': '19.3.0-develop.31',
|
8
8
|
// peer dependency of kendo-angular-inputs
|
9
|
-
'@progress/kendo-angular-dialog': '19.3.0-develop.
|
9
|
+
'@progress/kendo-angular-dialog': '19.3.0-develop.31',
|
10
10
|
// peer dependency of kendo-angular-icons
|
11
11
|
'@progress/kendo-svg-icons': '^4.0.0',
|
12
12
|
// peer dependency of kendo-angular-dateinputs
|
13
|
-
'@progress/kendo-angular-navigation': '19.3.0-develop.
|
13
|
+
'@progress/kendo-angular-navigation': '19.3.0-develop.31',
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|
package/utils.d.ts
CHANGED
@@ -78,7 +78,3 @@ export declare const requestAnimationFrame: any;
|
|
78
78
|
export declare const cancelAnimationFrame: any;
|
79
79
|
/** @hidden */
|
80
80
|
export declare const isColumnEditable: (column: any, formGroup: any) => boolean;
|
81
|
-
/**
|
82
|
-
* @hidden
|
83
|
-
*/
|
84
|
-
export declare const replaceMessagePlaceholder: (message: string, name: string, value: string) => string;
|