@progress/kendo-angular-treelist 19.3.0-develop.26 → 19.3.0-develop.27
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 +2 -2
- package/esm2022/common/id.service.mjs +1 -1
- package/esm2022/filtering/menu/filter-menu.component.mjs +2 -2
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-treelist.mjs +7 -7
- package/package.json +18 -18
- package/schematics/ngAdd/index.js +3 -3
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>;
|
@@ -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);
|
@@ -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 @@ 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: 1754558910,
|
14
|
+
version: '19.3.0-develop.27',
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
16
16
|
};
|
@@ -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: 1754558910,
|
53
|
+
version: '19.3.0-develop.27',
|
54
54
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
55
55
|
};
|
56
56
|
|
@@ -5156,7 +5156,7 @@ class IdService {
|
|
5156
5156
|
cellId(rowIndex, colIndex) {
|
5157
5157
|
return `${this.prefix}-r${rowIndex}c${colIndex}`;
|
5158
5158
|
}
|
5159
|
-
|
5159
|
+
treelistId() {
|
5160
5160
|
return this.prefix;
|
5161
5161
|
}
|
5162
5162
|
selectionCheckboxId(itemIndex) {
|
@@ -14120,7 +14120,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
14120
14120
|
|
14121
14121
|
const POPUP_CLASSES = 'k-grid-columnmenu-popup k-column-menu';
|
14122
14122
|
let id$1 = 0;
|
14123
|
-
const getId$1 = (
|
14123
|
+
const getId$1 = (treelistId) => `${treelistId}-column-menu-${id$1++}`;
|
14124
14124
|
/**
|
14125
14125
|
* Represents the [column menu]({% slug columnmenu_treelist %}) component of the TreeList.
|
14126
14126
|
* Use this component to display and manage column menu options for a TreeList column.
|
@@ -14306,7 +14306,7 @@ class ColumnMenuComponent {
|
|
14306
14306
|
}));
|
14307
14307
|
const popupAriaElement = this.popupRef.popupElement.querySelector('.k-grid-columnmenu-popup');
|
14308
14308
|
if (popupAriaElement) {
|
14309
|
-
const popupId = getId$1(this.idService?.
|
14309
|
+
const popupId = getId$1(this.idService?.treelistId());
|
14310
14310
|
this.renderer.setAttribute(popupAriaElement, 'id', popupId);
|
14311
14311
|
this.renderer.setAttribute(popupAriaElement, 'role', 'dialog');
|
14312
14312
|
this.renderer.setAttribute(popupAriaElement, 'aria-label', this.columnMenuTitle);
|
@@ -14534,7 +14534,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
14534
14534
|
}] } });
|
14535
14535
|
|
14536
14536
|
let id = 0;
|
14537
|
-
const getId = (
|
14537
|
+
const getId = (treelistId) => `${treelistId}-filter-menu-${id++}`;
|
14538
14538
|
/**
|
14539
14539
|
* @hidden
|
14540
14540
|
*/
|
@@ -14608,7 +14608,7 @@ class FilterMenuComponent {
|
|
14608
14608
|
}));
|
14609
14609
|
const popupAriaElement = this.popupRef.popupElement.querySelector('.k-grid-filter-popup');
|
14610
14610
|
if (popupAriaElement) {
|
14611
|
-
const popupId = getId(this.idService?.
|
14611
|
+
const popupId = getId(this.idService?.treelistId());
|
14612
14612
|
this.renderer.setAttribute(popupAriaElement, 'id', popupId);
|
14613
14613
|
this.renderer.setAttribute(popupAriaElement, 'role', 'dialog');
|
14614
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.27",
|
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": 1754558910,
|
28
28
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
29
29
|
}
|
30
30
|
},
|
@@ -37,26 +37,26 @@
|
|
37
37
|
"@progress/kendo-data-query": "^1.0.0",
|
38
38
|
"@progress/kendo-drawing": "^1.21.0",
|
39
39
|
"@progress/kendo-licensing": "^1.7.0",
|
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.
|
40
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.27",
|
41
|
+
"@progress/kendo-angular-common": "19.3.0-develop.27",
|
42
|
+
"@progress/kendo-angular-dateinputs": "19.3.0-develop.27",
|
43
|
+
"@progress/kendo-angular-dropdowns": "19.3.0-develop.27",
|
44
|
+
"@progress/kendo-angular-excel-export": "19.3.0-develop.27",
|
45
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.27",
|
46
|
+
"@progress/kendo-angular-inputs": "19.3.0-develop.27",
|
47
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.27",
|
48
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.27",
|
49
|
+
"@progress/kendo-angular-label": "19.3.0-develop.27",
|
50
|
+
"@progress/kendo-angular-pager": "19.3.0-develop.27",
|
51
|
+
"@progress/kendo-angular-pdf-export": "19.3.0-develop.27",
|
52
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.27",
|
53
|
+
"@progress/kendo-angular-toolbar": "19.3.0-develop.27",
|
54
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.27",
|
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.27",
|
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.27',
|
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.27',
|
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.27',
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|