@progress/kendo-angular-dropdowns 24.2.0-develop.9 → 24.2.1-develop.1
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2026 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 { ExpandableComponent, ExpandDirective } from '@progress/kendo-angular-treeview';
|
|
5
|
+
import { ExpandableComponent, ExpandDirective, FilterExpandSettings } from '@progress/kendo-angular-treeview';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Manages the expanded state of the popup TreeView.
|
|
@@ -26,6 +26,7 @@ export declare class DropDownTreesExpandDirective extends ExpandDirective {
|
|
|
26
26
|
* Implemented as a value setter in the base directive, this just overrides the input name.
|
|
27
27
|
*/
|
|
28
28
|
set isExpanded(value: (item: object, index: string) => boolean);
|
|
29
|
+
get filterExpandSettings(): FilterExpandSettings;
|
|
29
30
|
constructor(dropDownTree: ExpandableComponent);
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownTreesExpandDirective, never>;
|
|
31
32
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownTreesExpandDirective, "[kendoDropDownTreeExpandable], [kendoMultiSelectTreeExpandable]", never, { "isExpanded": { "alias": "isNodeExpanded"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -37,8 +37,8 @@ const packageMetadata = {
|
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCode: 'KENDOUIANGULAR',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR'],
|
|
40
|
-
publishDate:
|
|
41
|
-
version: '24.2.
|
|
40
|
+
publishDate: 1782832584,
|
|
41
|
+
version: '24.2.1-develop.1',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -17816,6 +17816,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
17816
17816
|
args: ['kendoMultiSelectTreeHierarchyBinding']
|
|
17817
17817
|
}] } });
|
|
17818
17818
|
|
|
17819
|
+
const DD_DEFAULT_FILTER_EXPAND_SETTINGS = {
|
|
17820
|
+
maxAutoExpandResults: -1,
|
|
17821
|
+
expandMatches: false,
|
|
17822
|
+
expandedOnClear: 'unchanged'
|
|
17823
|
+
};
|
|
17819
17824
|
/**
|
|
17820
17825
|
* Manages the expanded state of the popup TreeView.
|
|
17821
17826
|
* @example
|
|
@@ -17840,6 +17845,10 @@ class DropDownTreesExpandDirective extends ExpandDirective {
|
|
|
17840
17845
|
set isExpanded(value) {
|
|
17841
17846
|
this.dropDownTree.isExpanded = value;
|
|
17842
17847
|
}
|
|
17848
|
+
get filterExpandSettings() {
|
|
17849
|
+
const settings = typeof this.expandOnFilter === 'boolean' ? { enabled: this.expandOnFilter } : { ...this.expandOnFilter, enabled: true };
|
|
17850
|
+
return { ...DD_DEFAULT_FILTER_EXPAND_SETTINGS, ...settings };
|
|
17851
|
+
}
|
|
17843
17852
|
constructor(dropDownTree) {
|
|
17844
17853
|
super(dropDownTree);
|
|
17845
17854
|
this.dropDownTree = dropDownTree;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.2.
|
|
10
|
+
"publishDate": 1782832584,
|
|
11
|
+
"version": "24.2.1-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "24.2.
|
|
3
|
+
"version": "24.2.1-develop.1",
|
|
4
4
|
"description": "A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree ",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"package": {
|
|
122
122
|
"productName": "Kendo UI for Angular",
|
|
123
123
|
"productCode": "KENDOUIANGULAR",
|
|
124
|
-
"publishDate":
|
|
124
|
+
"publishDate": 1782832584,
|
|
125
125
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
126
126
|
}
|
|
127
127
|
},
|
|
@@ -132,18 +132,18 @@
|
|
|
132
132
|
"@angular/forms": "19 - 22",
|
|
133
133
|
"@angular/platform-browser": "19 - 22",
|
|
134
134
|
"@progress/kendo-licensing": "^1.11.0",
|
|
135
|
-
"@progress/kendo-angular-common": "24.2.
|
|
136
|
-
"@progress/kendo-angular-utils": "24.2.
|
|
137
|
-
"@progress/kendo-angular-l10n": "24.2.
|
|
138
|
-
"@progress/kendo-angular-navigation": "24.2.
|
|
139
|
-
"@progress/kendo-angular-popup": "24.2.
|
|
140
|
-
"@progress/kendo-angular-icons": "24.2.
|
|
141
|
-
"@progress/kendo-angular-treeview": "24.2.
|
|
135
|
+
"@progress/kendo-angular-common": "24.2.1-develop.1",
|
|
136
|
+
"@progress/kendo-angular-utils": "24.2.1-develop.1",
|
|
137
|
+
"@progress/kendo-angular-l10n": "24.2.1-develop.1",
|
|
138
|
+
"@progress/kendo-angular-navigation": "24.2.1-develop.1",
|
|
139
|
+
"@progress/kendo-angular-popup": "24.2.1-develop.1",
|
|
140
|
+
"@progress/kendo-angular-icons": "24.2.1-develop.1",
|
|
141
|
+
"@progress/kendo-angular-treeview": "24.2.1-develop.1",
|
|
142
142
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
145
|
"tslib": "^2.3.1",
|
|
146
|
-
"@progress/kendo-angular-schematics": "24.2.
|
|
146
|
+
"@progress/kendo-angular-schematics": "24.2.1-develop.1",
|
|
147
147
|
"@progress/kendo-common": "^1.0.1"
|
|
148
148
|
},
|
|
149
149
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
11
11
|
// peers of the treeview
|
|
12
|
-
'@progress/kendo-angular-inputs': '24.2.
|
|
12
|
+
'@progress/kendo-angular-inputs': '24.2.1-develop.1',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '24.2.
|
|
14
|
+
'@progress/kendo-angular-intl': '24.2.1-develop.1',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|