@progress/kendo-angular-dropdowns 18.0.0-develop.10 → 18.0.0-develop.11
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/esm2022/comboboxes/combobox.component.mjs +2 -0
- package/esm2022/comboboxes/multicolumncombobox.component.mjs +2 -0
- package/esm2022/dropdownlist/dropdownlist.component.mjs +2 -0
- package/esm2022/dropdowntrees/dropdowntree.component.mjs +2 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +10 -2
- package/package.json +9 -9
- package/schematics/ngAdd/index.js +2 -2
|
@@ -1705,6 +1705,7 @@ export class ComboBoxComponent extends MultiTabStop {
|
|
|
1705
1705
|
class="k-input-button k-button k-icon-button"
|
|
1706
1706
|
[ngClass]="selectButtonClasses"
|
|
1707
1707
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1708
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1708
1709
|
(keydown.enter)="$event.stopImmediatePropagation();"
|
|
1709
1710
|
[kendoEventsOutsideAngular]="{
|
|
1710
1711
|
mousedown: preventEventDefault
|
|
@@ -1893,6 +1894,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1893
1894
|
class="k-input-button k-button k-icon-button"
|
|
1894
1895
|
[ngClass]="selectButtonClasses"
|
|
1895
1896
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1897
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1896
1898
|
(keydown.enter)="$event.stopImmediatePropagation();"
|
|
1897
1899
|
[kendoEventsOutsideAngular]="{
|
|
1898
1900
|
mousedown: preventEventDefault
|
|
@@ -338,6 +338,7 @@ export class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
338
338
|
class="k-input-button k-button k-icon-button"
|
|
339
339
|
[ngClass]="selectButtonClasses"
|
|
340
340
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
341
|
+
[attr.disabled]="disabled ? '' : null"
|
|
341
342
|
[kendoEventsOutsideAngular]="{
|
|
342
343
|
mousedown: preventEventDefault
|
|
343
344
|
}"
|
|
@@ -624,6 +625,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
624
625
|
class="k-input-button k-button k-icon-button"
|
|
625
626
|
[ngClass]="selectButtonClasses"
|
|
626
627
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
628
|
+
[attr.disabled]="disabled ? '' : null"
|
|
627
629
|
[kendoEventsOutsideAngular]="{
|
|
628
630
|
mousedown: preventEventDefault
|
|
629
631
|
}"
|
|
@@ -1528,6 +1528,7 @@ export class DropDownListComponent {
|
|
|
1528
1528
|
class="k-input-button k-button k-icon-button"
|
|
1529
1529
|
[ngClass]="selectButtonClasses"
|
|
1530
1530
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1531
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1531
1532
|
[kendoEventsOutsideAngular]="{
|
|
1532
1533
|
mousedown: onMouseDown
|
|
1533
1534
|
}"
|
|
@@ -1721,6 +1722,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1721
1722
|
class="k-input-button k-button k-icon-button"
|
|
1722
1723
|
[ngClass]="selectButtonClasses"
|
|
1723
1724
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1725
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1724
1726
|
[kendoEventsOutsideAngular]="{
|
|
1725
1727
|
mousedown: onMouseDown
|
|
1726
1728
|
}"
|
|
@@ -1416,6 +1416,7 @@ export class DropDownTreeComponent {
|
|
|
1416
1416
|
class="k-input-button k-button k-icon-button"
|
|
1417
1417
|
[ngClass]="selectButtonClasses"
|
|
1418
1418
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1419
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1419
1420
|
>
|
|
1420
1421
|
<kendo-icon-wrapper
|
|
1421
1422
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -1623,6 +1624,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1623
1624
|
class="k-input-button k-button k-icon-button"
|
|
1624
1625
|
[ngClass]="selectButtonClasses"
|
|
1625
1626
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1627
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1626
1628
|
>
|
|
1627
1629
|
<kendo-icon-wrapper
|
|
1628
1630
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -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: '18.0.0-develop.
|
|
12
|
+
publishDate: 1736860208,
|
|
13
|
+
version: '18.0.0-develop.11',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -36,8 +36,8 @@ const packageMetadata = {
|
|
|
36
36
|
name: '@progress/kendo-angular-dropdowns',
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
39
|
-
publishDate:
|
|
40
|
-
version: '18.0.0-develop.
|
|
39
|
+
publishDate: 1736860208,
|
|
40
|
+
version: '18.0.0-develop.11',
|
|
41
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
42
42
|
};
|
|
43
43
|
|
|
@@ -6434,6 +6434,7 @@ class ComboBoxComponent extends MultiTabStop {
|
|
|
6434
6434
|
class="k-input-button k-button k-icon-button"
|
|
6435
6435
|
[ngClass]="selectButtonClasses"
|
|
6436
6436
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
6437
|
+
[attr.disabled]="disabled ? '' : null"
|
|
6437
6438
|
(keydown.enter)="$event.stopImmediatePropagation();"
|
|
6438
6439
|
[kendoEventsOutsideAngular]="{
|
|
6439
6440
|
mousedown: preventEventDefault
|
|
@@ -6622,6 +6623,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6622
6623
|
class="k-input-button k-button k-icon-button"
|
|
6623
6624
|
[ngClass]="selectButtonClasses"
|
|
6624
6625
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
6626
|
+
[attr.disabled]="disabled ? '' : null"
|
|
6625
6627
|
(keydown.enter)="$event.stopImmediatePropagation();"
|
|
6626
6628
|
[kendoEventsOutsideAngular]="{
|
|
6627
6629
|
mousedown: preventEventDefault
|
|
@@ -8415,6 +8417,7 @@ class DropDownListComponent {
|
|
|
8415
8417
|
class="k-input-button k-button k-icon-button"
|
|
8416
8418
|
[ngClass]="selectButtonClasses"
|
|
8417
8419
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
8420
|
+
[attr.disabled]="disabled ? '' : null"
|
|
8418
8421
|
[kendoEventsOutsideAngular]="{
|
|
8419
8422
|
mousedown: onMouseDown
|
|
8420
8423
|
}"
|
|
@@ -8608,6 +8611,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8608
8611
|
class="k-input-button k-button k-icon-button"
|
|
8609
8612
|
[ngClass]="selectButtonClasses"
|
|
8610
8613
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
8614
|
+
[attr.disabled]="disabled ? '' : null"
|
|
8611
8615
|
[kendoEventsOutsideAngular]="{
|
|
8612
8616
|
mousedown: onMouseDown
|
|
8613
8617
|
}"
|
|
@@ -12203,6 +12207,7 @@ class MultiColumnComboBoxComponent extends ComboBoxComponent {
|
|
|
12203
12207
|
class="k-input-button k-button k-icon-button"
|
|
12204
12208
|
[ngClass]="selectButtonClasses"
|
|
12205
12209
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
12210
|
+
[attr.disabled]="disabled ? '' : null"
|
|
12206
12211
|
[kendoEventsOutsideAngular]="{
|
|
12207
12212
|
mousedown: preventEventDefault
|
|
12208
12213
|
}"
|
|
@@ -12489,6 +12494,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
12489
12494
|
class="k-input-button k-button k-icon-button"
|
|
12490
12495
|
[ngClass]="selectButtonClasses"
|
|
12491
12496
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
12497
|
+
[attr.disabled]="disabled ? '' : null"
|
|
12492
12498
|
[kendoEventsOutsideAngular]="{
|
|
12493
12499
|
mousedown: preventEventDefault
|
|
12494
12500
|
}"
|
|
@@ -14089,6 +14095,7 @@ class DropDownTreeComponent {
|
|
|
14089
14095
|
class="k-input-button k-button k-icon-button"
|
|
14090
14096
|
[ngClass]="selectButtonClasses"
|
|
14091
14097
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
14098
|
+
[attr.disabled]="disabled ? '' : null"
|
|
14092
14099
|
>
|
|
14093
14100
|
<kendo-icon-wrapper
|
|
14094
14101
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -14296,6 +14303,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
14296
14303
|
class="k-input-button k-button k-icon-button"
|
|
14297
14304
|
[ngClass]="selectButtonClasses"
|
|
14298
14305
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
14306
|
+
[attr.disabled]="disabled ? '' : null"
|
|
14299
14307
|
>
|
|
14300
14308
|
<kendo-icon-wrapper
|
|
14301
14309
|
[name]="icon || 'caret-alt-down'"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "18.0.0-develop.
|
|
3
|
+
"version": "18.0.0-develop.11",
|
|
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,18 +25,18 @@
|
|
|
25
25
|
"@angular/forms": "16 - 19",
|
|
26
26
|
"@angular/platform-browser": "16 - 19",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "18.0.0-develop.
|
|
29
|
-
"@progress/kendo-angular-utils": "18.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-l10n": "18.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-navigation": "18.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-popup": "18.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-icons": "18.0.0-develop.
|
|
34
|
-
"@progress/kendo-angular-treeview": "18.0.0-develop.
|
|
28
|
+
"@progress/kendo-angular-common": "18.0.0-develop.11",
|
|
29
|
+
"@progress/kendo-angular-utils": "18.0.0-develop.11",
|
|
30
|
+
"@progress/kendo-angular-l10n": "18.0.0-develop.11",
|
|
31
|
+
"@progress/kendo-angular-navigation": "18.0.0-develop.11",
|
|
32
|
+
"@progress/kendo-angular-popup": "18.0.0-develop.11",
|
|
33
|
+
"@progress/kendo-angular-icons": "18.0.0-develop.11",
|
|
34
|
+
"@progress/kendo-angular-treeview": "18.0.0-develop.11",
|
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.1",
|
|
39
|
-
"@progress/kendo-angular-schematics": "18.0.0-develop.
|
|
39
|
+
"@progress/kendo-angular-schematics": "18.0.0-develop.11",
|
|
40
40
|
"@progress/kendo-common": "^1.0.1"
|
|
41
41
|
},
|
|
42
42
|
"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.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-inputs': '18.0.0-develop.11',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '18.0.0-develop.
|
|
9
|
+
'@progress/kendo-angular-intl': '18.0.0-develop.11',
|
|
10
10
|
'@progress/kendo-drawing': '^1.17.2',
|
|
11
11
|
// Peer dependency of icons
|
|
12
12
|
'@progress/kendo-svg-icons': '^4.0.0'
|