@progress/kendo-angular-dropdowns 18.5.1 → 18.5.2-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/common/searchbar.component.d.ts +1 -1
- package/dropdownlist/dropdownlist.component.d.ts +1 -1
- package/dropdowntrees/dropdowntree.component.d.ts +1 -1
- package/dropdowntrees/multiselecttree.component.d.ts +1 -1
- package/esm2022/common/searchbar.component.mjs +1 -1
- package/esm2022/dropdownlist/dropdownlist.component.mjs +1 -1
- package/esm2022/dropdowntrees/dropdowntree.component.mjs +2 -2
- package/esm2022/dropdowntrees/multiselecttree.component.mjs +1 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +7 -7
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -49,7 +49,7 @@ export declare class SearchBarComponent implements OnChanges, OnInit, OnDestroy
|
|
|
49
49
|
isLoading: boolean;
|
|
50
50
|
ariaControls: string;
|
|
51
51
|
ariaExpanded: boolean | null;
|
|
52
|
-
get attrAriaInvalid(): boolean;
|
|
52
|
+
get attrAriaInvalid(): boolean | null;
|
|
53
53
|
set placeholder(text: string);
|
|
54
54
|
get placeholder(): string;
|
|
55
55
|
role: string;
|
|
@@ -398,7 +398,7 @@ export declare class DropDownListComponent implements ControlValueAccessor, Afte
|
|
|
398
398
|
get isBusy(): boolean;
|
|
399
399
|
role: string;
|
|
400
400
|
haspopup: string;
|
|
401
|
-
get hostAriaInvalid():
|
|
401
|
+
get hostAriaInvalid(): boolean | null;
|
|
402
402
|
/**
|
|
403
403
|
* @hidden
|
|
404
404
|
*/
|
|
@@ -82,7 +82,7 @@ export declare class DropDownTreeComponent implements OnInit, OnDestroy, OnChang
|
|
|
82
82
|
get actionSheetSearchBar(): TextBoxComponent;
|
|
83
83
|
hostClasses: boolean;
|
|
84
84
|
get isReadonly(): string;
|
|
85
|
-
get hostAriaInvalid():
|
|
85
|
+
get hostAriaInvalid(): boolean | null;
|
|
86
86
|
get isDisabled(): boolean | null;
|
|
87
87
|
get isLoading(): boolean;
|
|
88
88
|
get isBusy(): string;
|
|
@@ -67,7 +67,7 @@ export declare class MultiSelectTreeComponent implements OnInit, OnDestroy, OnCh
|
|
|
67
67
|
treeViewId: string;
|
|
68
68
|
get hostAriaAutocomplete(): string;
|
|
69
69
|
get isLoading(): boolean;
|
|
70
|
-
get hostAriaInvalid():
|
|
70
|
+
get hostAriaInvalid(): boolean | null;
|
|
71
71
|
get isBusy(): string;
|
|
72
72
|
get id(): string;
|
|
73
73
|
direction: Direction;
|
|
@@ -107,7 +107,7 @@ export class SearchBarComponent {
|
|
|
107
107
|
ariaControls;
|
|
108
108
|
ariaExpanded = null;
|
|
109
109
|
get attrAriaInvalid() {
|
|
110
|
-
return this.formControl?.invalid;
|
|
110
|
+
return this.formControl?.invalid ? true : null;
|
|
111
111
|
}
|
|
112
112
|
set placeholder(text) {
|
|
113
113
|
this._placeholder = text || '';
|
|
@@ -594,7 +594,7 @@ export class DropDownListComponent {
|
|
|
594
594
|
role = 'combobox';
|
|
595
595
|
haspopup = 'listbox';
|
|
596
596
|
get hostAriaInvalid() {
|
|
597
|
-
return this.formControl ?
|
|
597
|
+
return this.formControl?.invalid ? true : null;
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
600
|
* @hidden
|
|
@@ -106,7 +106,7 @@ export class DropDownTreeComponent {
|
|
|
106
106
|
return this.readonly ? '' : null;
|
|
107
107
|
}
|
|
108
108
|
get hostAriaInvalid() {
|
|
109
|
-
return this.formControl ?
|
|
109
|
+
return this.formControl?.invalid ? true : null;
|
|
110
110
|
}
|
|
111
111
|
get isDisabled() {
|
|
112
112
|
return this.disabled || null;
|
|
@@ -1068,7 +1068,7 @@ export class DropDownTreeComponent {
|
|
|
1068
1068
|
// When `valueDepth` can be defined from the index on selectionChange or provided by the user
|
|
1069
1069
|
return fieldsCount < this.valueDepth ? field[fieldsCount] : field[this.valueDepth];
|
|
1070
1070
|
}
|
|
1071
|
-
else {
|
|
1071
|
+
else if (value && typeof value === 'object') {
|
|
1072
1072
|
// Fallback: Look to find a match of each field in the current data item
|
|
1073
1073
|
// Side effect may occur if all of the listed fields are present in the data item
|
|
1074
1074
|
return field.find(item => item in value);
|
|
@@ -94,7 +94,7 @@ export class MultiSelectTreeComponent {
|
|
|
94
94
|
return this.loading;
|
|
95
95
|
}
|
|
96
96
|
get hostAriaInvalid() {
|
|
97
|
-
return this.formControl ?
|
|
97
|
+
return this.formControl?.invalid ? true : null;
|
|
98
98
|
}
|
|
99
99
|
get isBusy() {
|
|
100
100
|
return this.loading ? 'true' : null;
|
|
@@ -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: '18.5.
|
|
13
|
+
publishDate: 1744902137,
|
|
14
|
+
version: '18.5.2-develop.10',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -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: '18.5.
|
|
40
|
+
publishDate: 1744902137,
|
|
41
|
+
version: '18.5.2-develop.10',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -549,7 +549,7 @@ class SearchBarComponent {
|
|
|
549
549
|
ariaControls;
|
|
550
550
|
ariaExpanded = null;
|
|
551
551
|
get attrAriaInvalid() {
|
|
552
|
-
return this.formControl?.invalid;
|
|
552
|
+
return this.formControl?.invalid ? true : null;
|
|
553
553
|
}
|
|
554
554
|
set placeholder(text) {
|
|
555
555
|
this._placeholder = text || '';
|
|
@@ -7497,7 +7497,7 @@ class DropDownListComponent {
|
|
|
7497
7497
|
role = 'combobox';
|
|
7498
7498
|
haspopup = 'listbox';
|
|
7499
7499
|
get hostAriaInvalid() {
|
|
7500
|
-
return this.formControl ?
|
|
7500
|
+
return this.formControl?.invalid ? true : null;
|
|
7501
7501
|
}
|
|
7502
7502
|
/**
|
|
7503
7503
|
* @hidden
|
|
@@ -12807,7 +12807,7 @@ class DropDownTreeComponent {
|
|
|
12807
12807
|
return this.readonly ? '' : null;
|
|
12808
12808
|
}
|
|
12809
12809
|
get hostAriaInvalid() {
|
|
12810
|
-
return this.formControl ?
|
|
12810
|
+
return this.formControl?.invalid ? true : null;
|
|
12811
12811
|
}
|
|
12812
12812
|
get isDisabled() {
|
|
12813
12813
|
return this.disabled || null;
|
|
@@ -13769,7 +13769,7 @@ class DropDownTreeComponent {
|
|
|
13769
13769
|
// When `valueDepth` can be defined from the index on selectionChange or provided by the user
|
|
13770
13770
|
return fieldsCount < this.valueDepth ? field[fieldsCount] : field[this.valueDepth];
|
|
13771
13771
|
}
|
|
13772
|
-
else {
|
|
13772
|
+
else if (value && typeof value === 'object') {
|
|
13773
13773
|
// Fallback: Look to find a match of each field in the current data item
|
|
13774
13774
|
// Side effect may occur if all of the listed fields are present in the data item
|
|
13775
13775
|
return field.find(item => item in value);
|
|
@@ -15144,7 +15144,7 @@ class MultiSelectTreeComponent {
|
|
|
15144
15144
|
return this.loading;
|
|
15145
15145
|
}
|
|
15146
15146
|
get hostAriaInvalid() {
|
|
15147
|
-
return this.formControl ?
|
|
15147
|
+
return this.formControl?.invalid ? true : null;
|
|
15148
15148
|
}
|
|
15149
15149
|
get isBusy() {
|
|
15150
15150
|
return this.loading ? 'true' : null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "18.5.
|
|
3
|
+
"version": "18.5.2-develop.10",
|
|
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",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"package": {
|
|
21
21
|
"productName": "Kendo UI for Angular",
|
|
22
22
|
"productCode": "KENDOUIANGULAR",
|
|
23
|
-
"publishDate":
|
|
23
|
+
"publishDate": 1744902137,
|
|
24
24
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
25
25
|
}
|
|
26
26
|
},
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"@angular/forms": "16 - 19",
|
|
32
32
|
"@angular/platform-browser": "16 - 19",
|
|
33
33
|
"@progress/kendo-licensing": "^1.5.0",
|
|
34
|
-
"@progress/kendo-angular-common": "18.5.
|
|
35
|
-
"@progress/kendo-angular-utils": "18.5.
|
|
36
|
-
"@progress/kendo-angular-l10n": "18.5.
|
|
37
|
-
"@progress/kendo-angular-navigation": "18.5.
|
|
38
|
-
"@progress/kendo-angular-popup": "18.5.
|
|
39
|
-
"@progress/kendo-angular-icons": "18.5.
|
|
40
|
-
"@progress/kendo-angular-treeview": "18.5.
|
|
34
|
+
"@progress/kendo-angular-common": "18.5.2-develop.10",
|
|
35
|
+
"@progress/kendo-angular-utils": "18.5.2-develop.10",
|
|
36
|
+
"@progress/kendo-angular-l10n": "18.5.2-develop.10",
|
|
37
|
+
"@progress/kendo-angular-navigation": "18.5.2-develop.10",
|
|
38
|
+
"@progress/kendo-angular-popup": "18.5.2-develop.10",
|
|
39
|
+
"@progress/kendo-angular-icons": "18.5.2-develop.10",
|
|
40
|
+
"@progress/kendo-angular-treeview": "18.5.2-develop.10",
|
|
41
41
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"tslib": "^2.3.1",
|
|
45
|
-
"@progress/kendo-angular-schematics": "18.5.
|
|
45
|
+
"@progress/kendo-angular-schematics": "18.5.2-develop.10",
|
|
46
46
|
"@progress/kendo-common": "^1.0.1"
|
|
47
47
|
},
|
|
48
48
|
"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': '18.5.
|
|
7
|
+
'@progress/kendo-angular-inputs': '18.5.2-develop.10',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '18.5.
|
|
9
|
+
'@progress/kendo-angular-intl': '18.5.2-develop.10',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0'
|