@progress/kendo-angular-dropdowns 16.7.1 → 16.8.0-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.
- package/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.d.ts +2 -1
- package/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.d.ts +2 -1
- package/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.d.ts +2 -1
- package/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.d.ts +2 -1
- package/esm2020/dropdowntrees/data-binding/dropdowntree/flat-binding.directive.mjs +10 -0
- package/esm2020/dropdowntrees/data-binding/dropdowntree/hierarchy-binding.directive.mjs +10 -0
- package/esm2020/dropdowntrees/data-binding/multiselecttree/flat-binding.directive.mjs +10 -0
- package/esm2020/dropdowntrees/data-binding/multiselecttree/hierarchy-binding.directive.mjs +10 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-dropdowns.mjs +42 -2
- package/fesm2020/progress-kendo-angular-dropdowns.mjs +42 -2
- package/package.json +8 -8
- package/schematics/ngAdd/index.js +2 -2
|
@@ -13,7 +13,8 @@ export declare class DropDownTreeFlatBindingDirective extends FlatDataBindingDir
|
|
|
13
13
|
/**
|
|
14
14
|
* The nodes which will be displayed by the DropDownTree.
|
|
15
15
|
*/
|
|
16
|
-
nodes: any[];
|
|
16
|
+
set nodes(nodes: any[]);
|
|
17
|
+
get nodes(): any[];
|
|
17
18
|
/**
|
|
18
19
|
* Represents the unique field which identifies a node.
|
|
19
20
|
*/
|
|
@@ -13,7 +13,8 @@ export declare class MultiSelectTreeFlatBindingDirective extends FlatDataBinding
|
|
|
13
13
|
/**
|
|
14
14
|
* The nodes which will be displayed by the MultiSelectTree.
|
|
15
15
|
*/
|
|
16
|
-
nodes: any[];
|
|
16
|
+
set nodes(nodes: any[]);
|
|
17
|
+
get nodes(): any[];
|
|
17
18
|
/**
|
|
18
19
|
* Represents the unique field which identifies a node.
|
|
19
20
|
*/
|
|
@@ -15,6 +15,16 @@ export class DropDownTreeFlatBindingDirective extends FlatDataBindingDirective {
|
|
|
15
15
|
super(dropDownTree);
|
|
16
16
|
this.dropDownTree = dropDownTree;
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* The nodes which will be displayed by the DropDownTree.
|
|
20
|
+
*/
|
|
21
|
+
set nodes(nodes) {
|
|
22
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
23
|
+
this._nodes = nodes;
|
|
24
|
+
}
|
|
25
|
+
get nodes() {
|
|
26
|
+
return this._nodes;
|
|
27
|
+
}
|
|
18
28
|
/**
|
|
19
29
|
* @hidden
|
|
20
30
|
*/
|
|
@@ -37,6 +37,16 @@ export class DropDownTreeHierarchyBindingDirective extends HierarchyBindingDirec
|
|
|
37
37
|
super(dropDownTree);
|
|
38
38
|
this.dropDownTree = dropDownTree;
|
|
39
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* The nodes which will be displayed by the DropDownTree.
|
|
42
|
+
*/
|
|
43
|
+
set nodes(nodes) {
|
|
44
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
45
|
+
this._nodes = nodes;
|
|
46
|
+
}
|
|
47
|
+
get nodes() {
|
|
48
|
+
return this._nodes;
|
|
49
|
+
}
|
|
40
50
|
/**
|
|
41
51
|
* @hidden
|
|
42
52
|
*/
|
|
@@ -15,6 +15,16 @@ export class MultiSelectTreeFlatBindingDirective extends FlatDataBindingDirectiv
|
|
|
15
15
|
super(multiSelectTree);
|
|
16
16
|
this.multiSelectTree = multiSelectTree;
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* The nodes which will be displayed by the MultiSelectTree.
|
|
20
|
+
*/
|
|
21
|
+
set nodes(nodes) {
|
|
22
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
23
|
+
this._nodes = nodes;
|
|
24
|
+
}
|
|
25
|
+
get nodes() {
|
|
26
|
+
return this._nodes;
|
|
27
|
+
}
|
|
18
28
|
/**
|
|
19
29
|
* @hidden
|
|
20
30
|
*/
|
|
@@ -15,6 +15,16 @@ export class MultiSelectTreeHierarchyBindingDirective extends HierarchyBindingDi
|
|
|
15
15
|
super(multiSelectTree);
|
|
16
16
|
this.multiSelectTree = multiSelectTree;
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* The nodes which will be displayed by the MultiSelectTree.
|
|
20
|
+
*/
|
|
21
|
+
set nodes(nodes) {
|
|
22
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
23
|
+
this._nodes = nodes;
|
|
24
|
+
}
|
|
25
|
+
get nodes() {
|
|
26
|
+
return this._nodes;
|
|
27
|
+
}
|
|
18
28
|
/**
|
|
19
29
|
* @hidden
|
|
20
30
|
*/
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dropdowns',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1724076961,
|
|
13
|
+
version: '16.8.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -34,8 +34,8 @@ const packageMetadata = {
|
|
|
34
34
|
name: '@progress/kendo-angular-dropdowns',
|
|
35
35
|
productName: 'Kendo UI for Angular',
|
|
36
36
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
37
|
-
publishDate:
|
|
38
|
-
version: '16.
|
|
37
|
+
publishDate: 1724076961,
|
|
38
|
+
version: '16.8.0-develop.1',
|
|
39
39
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
40
40
|
};
|
|
41
41
|
|
|
@@ -16600,6 +16600,16 @@ class DropDownTreeFlatBindingDirective extends FlatDataBindingDirective {
|
|
|
16600
16600
|
super(dropDownTree);
|
|
16601
16601
|
this.dropDownTree = dropDownTree;
|
|
16602
16602
|
}
|
|
16603
|
+
/**
|
|
16604
|
+
* The nodes which will be displayed by the DropDownTree.
|
|
16605
|
+
*/
|
|
16606
|
+
set nodes(nodes) {
|
|
16607
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16608
|
+
this._nodes = nodes;
|
|
16609
|
+
}
|
|
16610
|
+
get nodes() {
|
|
16611
|
+
return this._nodes;
|
|
16612
|
+
}
|
|
16603
16613
|
/**
|
|
16604
16614
|
* @hidden
|
|
16605
16615
|
*/
|
|
@@ -16659,6 +16669,16 @@ class DropDownTreeHierarchyBindingDirective extends HierarchyBindingDirective {
|
|
|
16659
16669
|
super(dropDownTree);
|
|
16660
16670
|
this.dropDownTree = dropDownTree;
|
|
16661
16671
|
}
|
|
16672
|
+
/**
|
|
16673
|
+
* The nodes which will be displayed by the DropDownTree.
|
|
16674
|
+
*/
|
|
16675
|
+
set nodes(nodes) {
|
|
16676
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16677
|
+
this._nodes = nodes;
|
|
16678
|
+
}
|
|
16679
|
+
get nodes() {
|
|
16680
|
+
return this._nodes;
|
|
16681
|
+
}
|
|
16662
16682
|
/**
|
|
16663
16683
|
* @hidden
|
|
16664
16684
|
*/
|
|
@@ -16694,6 +16714,16 @@ class MultiSelectTreeFlatBindingDirective extends FlatDataBindingDirective {
|
|
|
16694
16714
|
super(multiSelectTree);
|
|
16695
16715
|
this.multiSelectTree = multiSelectTree;
|
|
16696
16716
|
}
|
|
16717
|
+
/**
|
|
16718
|
+
* The nodes which will be displayed by the MultiSelectTree.
|
|
16719
|
+
*/
|
|
16720
|
+
set nodes(nodes) {
|
|
16721
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16722
|
+
this._nodes = nodes;
|
|
16723
|
+
}
|
|
16724
|
+
get nodes() {
|
|
16725
|
+
return this._nodes;
|
|
16726
|
+
}
|
|
16697
16727
|
/**
|
|
16698
16728
|
* @hidden
|
|
16699
16729
|
*/
|
|
@@ -16732,6 +16762,16 @@ class MultiSelectTreeHierarchyBindingDirective extends HierarchyBindingDirective
|
|
|
16732
16762
|
super(multiSelectTree);
|
|
16733
16763
|
this.multiSelectTree = multiSelectTree;
|
|
16734
16764
|
}
|
|
16765
|
+
/**
|
|
16766
|
+
* The nodes which will be displayed by the MultiSelectTree.
|
|
16767
|
+
*/
|
|
16768
|
+
set nodes(nodes) {
|
|
16769
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16770
|
+
this._nodes = nodes;
|
|
16771
|
+
}
|
|
16772
|
+
get nodes() {
|
|
16773
|
+
return this._nodes;
|
|
16774
|
+
}
|
|
16735
16775
|
/**
|
|
16736
16776
|
* @hidden
|
|
16737
16777
|
*/
|
|
@@ -34,8 +34,8 @@ const packageMetadata = {
|
|
|
34
34
|
name: '@progress/kendo-angular-dropdowns',
|
|
35
35
|
productName: 'Kendo UI for Angular',
|
|
36
36
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
37
|
-
publishDate:
|
|
38
|
-
version: '16.
|
|
37
|
+
publishDate: 1724076961,
|
|
38
|
+
version: '16.8.0-develop.1',
|
|
39
39
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
40
40
|
};
|
|
41
41
|
|
|
@@ -16573,6 +16573,16 @@ class DropDownTreeFlatBindingDirective extends FlatDataBindingDirective {
|
|
|
16573
16573
|
super(dropDownTree);
|
|
16574
16574
|
this.dropDownTree = dropDownTree;
|
|
16575
16575
|
}
|
|
16576
|
+
/**
|
|
16577
|
+
* The nodes which will be displayed by the DropDownTree.
|
|
16578
|
+
*/
|
|
16579
|
+
set nodes(nodes) {
|
|
16580
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16581
|
+
this._nodes = nodes;
|
|
16582
|
+
}
|
|
16583
|
+
get nodes() {
|
|
16584
|
+
return this._nodes;
|
|
16585
|
+
}
|
|
16576
16586
|
/**
|
|
16577
16587
|
* @hidden
|
|
16578
16588
|
*/
|
|
@@ -16632,6 +16642,16 @@ class DropDownTreeHierarchyBindingDirective extends HierarchyBindingDirective {
|
|
|
16632
16642
|
super(dropDownTree);
|
|
16633
16643
|
this.dropDownTree = dropDownTree;
|
|
16634
16644
|
}
|
|
16645
|
+
/**
|
|
16646
|
+
* The nodes which will be displayed by the DropDownTree.
|
|
16647
|
+
*/
|
|
16648
|
+
set nodes(nodes) {
|
|
16649
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16650
|
+
this._nodes = nodes;
|
|
16651
|
+
}
|
|
16652
|
+
get nodes() {
|
|
16653
|
+
return this._nodes;
|
|
16654
|
+
}
|
|
16635
16655
|
/**
|
|
16636
16656
|
* @hidden
|
|
16637
16657
|
*/
|
|
@@ -16667,6 +16687,16 @@ class MultiSelectTreeFlatBindingDirective extends FlatDataBindingDirective {
|
|
|
16667
16687
|
super(multiSelectTree);
|
|
16668
16688
|
this.multiSelectTree = multiSelectTree;
|
|
16669
16689
|
}
|
|
16690
|
+
/**
|
|
16691
|
+
* The nodes which will be displayed by the MultiSelectTree.
|
|
16692
|
+
*/
|
|
16693
|
+
set nodes(nodes) {
|
|
16694
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16695
|
+
this._nodes = nodes;
|
|
16696
|
+
}
|
|
16697
|
+
get nodes() {
|
|
16698
|
+
return this._nodes;
|
|
16699
|
+
}
|
|
16670
16700
|
/**
|
|
16671
16701
|
* @hidden
|
|
16672
16702
|
*/
|
|
@@ -16705,6 +16735,16 @@ class MultiSelectTreeHierarchyBindingDirective extends HierarchyBindingDirective
|
|
|
16705
16735
|
super(multiSelectTree);
|
|
16706
16736
|
this.multiSelectTree = multiSelectTree;
|
|
16707
16737
|
}
|
|
16738
|
+
/**
|
|
16739
|
+
* The nodes which will be displayed by the MultiSelectTree.
|
|
16740
|
+
*/
|
|
16741
|
+
set nodes(nodes) {
|
|
16742
|
+
// Needs to be a setter so that it matches the accessor in FlatDataBindingDirective it extends
|
|
16743
|
+
this._nodes = nodes;
|
|
16744
|
+
}
|
|
16745
|
+
get nodes() {
|
|
16746
|
+
return this._nodes;
|
|
16747
|
+
}
|
|
16708
16748
|
/**
|
|
16709
16749
|
* @hidden
|
|
16710
16750
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.8.0-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",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"@angular/forms": "15 - 18",
|
|
26
26
|
"@angular/platform-browser": "15 - 18",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "16.
|
|
29
|
-
"@progress/kendo-angular-l10n": "16.
|
|
30
|
-
"@progress/kendo-angular-navigation": "16.
|
|
31
|
-
"@progress/kendo-angular-popup": "16.
|
|
32
|
-
"@progress/kendo-angular-icons": "16.
|
|
33
|
-
"@progress/kendo-angular-treeview": "16.
|
|
28
|
+
"@progress/kendo-angular-common": "16.8.0-develop.1",
|
|
29
|
+
"@progress/kendo-angular-l10n": "16.8.0-develop.1",
|
|
30
|
+
"@progress/kendo-angular-navigation": "16.8.0-develop.1",
|
|
31
|
+
"@progress/kendo-angular-popup": "16.8.0-develop.1",
|
|
32
|
+
"@progress/kendo-angular-icons": "16.8.0-develop.1",
|
|
33
|
+
"@progress/kendo-angular-treeview": "16.8.0-develop.1",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "16.
|
|
38
|
+
"@progress/kendo-angular-schematics": "16.8.0-develop.1",
|
|
39
39
|
"@progress/kendo-common": "^0.2.1"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
@@ -4,9 +4,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
6
6
|
// peers of the treeview
|
|
7
|
-
'@progress/kendo-angular-inputs': '16.
|
|
7
|
+
'@progress/kendo-angular-inputs': '16.8.0-develop.1',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '16.
|
|
9
|
+
'@progress/kendo-angular-intl': '16.8.0-develop.1',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^3.0.0'
|