@progress/kendo-angular-dropdowns 18.0.0-develop.1 → 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 +3 -0
- package/esm2022/dropdowntrees/multiselecttree.component.mjs +1 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +12 -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
|
}"
|
|
@@ -1098,6 +1098,7 @@ export class DropDownTreeComponent {
|
|
|
1098
1098
|
anchor: this.wrapper,
|
|
1099
1099
|
appendTo: this.appendTo,
|
|
1100
1100
|
anchorAlign: anchorPosition,
|
|
1101
|
+
animate: this.popupSettings.animate,
|
|
1101
1102
|
content: this.popupTemplate,
|
|
1102
1103
|
popupAlign: popupPosition,
|
|
1103
1104
|
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
@@ -1415,6 +1416,7 @@ export class DropDownTreeComponent {
|
|
|
1415
1416
|
class="k-input-button k-button k-icon-button"
|
|
1416
1417
|
[ngClass]="selectButtonClasses"
|
|
1417
1418
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1419
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1418
1420
|
>
|
|
1419
1421
|
<kendo-icon-wrapper
|
|
1420
1422
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -1622,6 +1624,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1622
1624
|
class="k-input-button k-button k-icon-button"
|
|
1623
1625
|
[ngClass]="selectButtonClasses"
|
|
1624
1626
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
1627
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1625
1628
|
>
|
|
1626
1629
|
<kendo-icon-wrapper
|
|
1627
1630
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -1288,6 +1288,7 @@ export class MultiSelectTreeComponent {
|
|
|
1288
1288
|
anchor: this.wrapper,
|
|
1289
1289
|
appendTo: this.appendTo,
|
|
1290
1290
|
anchorAlign: anchorPosition,
|
|
1291
|
+
animate: this.popupSettings.animate,
|
|
1291
1292
|
content: this.popupTemplate,
|
|
1292
1293
|
popupAlign: popupPosition,
|
|
1293
1294
|
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
@@ -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
|
}"
|
|
@@ -13771,6 +13777,7 @@ class DropDownTreeComponent {
|
|
|
13771
13777
|
anchor: this.wrapper,
|
|
13772
13778
|
appendTo: this.appendTo,
|
|
13773
13779
|
anchorAlign: anchorPosition,
|
|
13780
|
+
animate: this.popupSettings.animate,
|
|
13774
13781
|
content: this.popupTemplate,
|
|
13775
13782
|
popupAlign: popupPosition,
|
|
13776
13783
|
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
|
@@ -14088,6 +14095,7 @@ class DropDownTreeComponent {
|
|
|
14088
14095
|
class="k-input-button k-button k-icon-button"
|
|
14089
14096
|
[ngClass]="selectButtonClasses"
|
|
14090
14097
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
14098
|
+
[attr.disabled]="disabled ? '' : null"
|
|
14091
14099
|
>
|
|
14092
14100
|
<kendo-icon-wrapper
|
|
14093
14101
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -14295,6 +14303,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
14295
14303
|
class="k-input-button k-button k-icon-button"
|
|
14296
14304
|
[ngClass]="selectButtonClasses"
|
|
14297
14305
|
[attr.aria-label]="messageFor('selectButtonText')"
|
|
14306
|
+
[attr.disabled]="disabled ? '' : null"
|
|
14298
14307
|
>
|
|
14299
14308
|
<kendo-icon-wrapper
|
|
14300
14309
|
[name]="icon || 'caret-alt-down'"
|
|
@@ -16299,6 +16308,7 @@ class MultiSelectTreeComponent {
|
|
|
16299
16308
|
anchor: this.wrapper,
|
|
16300
16309
|
appendTo: this.appendTo,
|
|
16301
16310
|
anchorAlign: anchorPosition,
|
|
16311
|
+
animate: this.popupSettings.animate,
|
|
16302
16312
|
content: this.popupTemplate,
|
|
16303
16313
|
popupAlign: popupPosition,
|
|
16304
16314
|
positionMode: appendToComponent ? 'fixed' : 'absolute',
|
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'
|