@progress/kendo-angular-dropdowns 18.4.1-develop.2 → 18.5.0-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/esm2022/common/list.component.mjs +0 -2
- package/esm2022/multiselect/multiselect.component.mjs +5 -5
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-dropdowns.mjs +7 -9
- package/multiselect/multiselect.component.d.ts +2 -2
- package/package.json +10 -10
- package/schematics/ngAdd/index.js +2 -2
|
@@ -461,7 +461,6 @@ export class ListComponent {
|
|
|
461
461
|
</div>
|
|
462
462
|
<div #content
|
|
463
463
|
[class]="listContentClass"
|
|
464
|
-
[style.overscrollBehavior]="'none'"
|
|
465
464
|
[style.maxHeight.px]="height"
|
|
466
465
|
unselectable="on"
|
|
467
466
|
(scroll)="popupListScroll.emit($event)">
|
|
@@ -599,7 +598,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
599
598
|
</div>
|
|
600
599
|
<div #content
|
|
601
600
|
[class]="listContentClass"
|
|
602
|
-
[style.overscrollBehavior]="'none'"
|
|
603
601
|
[style.maxHeight.px]="height"
|
|
604
602
|
unselectable="on"
|
|
605
603
|
(scroll)="popupListScroll.emit($event)">
|
|
@@ -273,7 +273,7 @@ export class MultiSelectComponent {
|
|
|
273
273
|
/**
|
|
274
274
|
* @hidden
|
|
275
275
|
*/
|
|
276
|
-
|
|
276
|
+
onPointerDown(event) {
|
|
277
277
|
event.preventDefault();
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
@@ -787,7 +787,7 @@ export class MultiSelectComponent {
|
|
|
787
787
|
this.hostElement = hostElement;
|
|
788
788
|
this.adaptiveService = adaptiveService;
|
|
789
789
|
validatePackage(packageMetadata);
|
|
790
|
-
this.
|
|
790
|
+
this.popupPointerDownHandler = this.onPointerDown.bind(this);
|
|
791
791
|
this.data = [];
|
|
792
792
|
this.direction = this.localization.rtl ? 'rtl' : 'ltr';
|
|
793
793
|
this.subscribeEvents();
|
|
@@ -1251,7 +1251,7 @@ export class MultiSelectComponent {
|
|
|
1251
1251
|
return this._isFocused;
|
|
1252
1252
|
}
|
|
1253
1253
|
selectedDataItems = [];
|
|
1254
|
-
|
|
1254
|
+
popupPointerDownHandler;
|
|
1255
1255
|
isOpenPrevented = false;
|
|
1256
1256
|
customValueSubject = new Subject();
|
|
1257
1257
|
customValueSubscription;
|
|
@@ -1701,7 +1701,7 @@ export class MultiSelectComponent {
|
|
|
1701
1701
|
destroyPopup() {
|
|
1702
1702
|
if (this.popupRef) {
|
|
1703
1703
|
this.popupRef.popupElement
|
|
1704
|
-
.removeEventListener('
|
|
1704
|
+
.removeEventListener('pointerdown', this.popupPointerDownHandler);
|
|
1705
1705
|
this.popupRef.close();
|
|
1706
1706
|
this.popupRef = null;
|
|
1707
1707
|
}
|
|
@@ -1735,7 +1735,7 @@ export class MultiSelectComponent {
|
|
|
1735
1735
|
this.renderer.setAttribute(popupWrapper, 'role', 'region');
|
|
1736
1736
|
this.renderer.setAttribute(popupWrapper, 'aria-label', this.messageFor('popupLabel'));
|
|
1737
1737
|
}
|
|
1738
|
-
popupWrapper.addEventListener('
|
|
1738
|
+
popupWrapper.addEventListener('pointerdown', this.popupPointerDownHandler);
|
|
1739
1739
|
popupWrapper.style.minWidth = min;
|
|
1740
1740
|
popupWrapper.style.width = max;
|
|
1741
1741
|
popupWrapper.style.height = this.height;
|
|
@@ -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.
|
|
13
|
+
publishDate: 1744092360,
|
|
14
|
+
version: '18.5.0-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.
|
|
40
|
+
publishDate: 1744092360,
|
|
41
|
+
version: '18.5.0-develop.10',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -2334,7 +2334,6 @@ class ListComponent {
|
|
|
2334
2334
|
</div>
|
|
2335
2335
|
<div #content
|
|
2336
2336
|
[class]="listContentClass"
|
|
2337
|
-
[style.overscrollBehavior]="'none'"
|
|
2338
2337
|
[style.maxHeight.px]="height"
|
|
2339
2338
|
unselectable="on"
|
|
2340
2339
|
(scroll)="popupListScroll.emit($event)">
|
|
@@ -2472,7 +2471,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2472
2471
|
</div>
|
|
2473
2472
|
<div #content
|
|
2474
2473
|
[class]="listContentClass"
|
|
2475
|
-
[style.overscrollBehavior]="'none'"
|
|
2476
2474
|
[style.maxHeight.px]="height"
|
|
2477
2475
|
unselectable="on"
|
|
2478
2476
|
(scroll)="popupListScroll.emit($event)">
|
|
@@ -9588,7 +9586,7 @@ class MultiSelectComponent {
|
|
|
9588
9586
|
/**
|
|
9589
9587
|
* @hidden
|
|
9590
9588
|
*/
|
|
9591
|
-
|
|
9589
|
+
onPointerDown(event) {
|
|
9592
9590
|
event.preventDefault();
|
|
9593
9591
|
}
|
|
9594
9592
|
/**
|
|
@@ -10102,7 +10100,7 @@ class MultiSelectComponent {
|
|
|
10102
10100
|
this.hostElement = hostElement;
|
|
10103
10101
|
this.adaptiveService = adaptiveService;
|
|
10104
10102
|
validatePackage(packageMetadata);
|
|
10105
|
-
this.
|
|
10103
|
+
this.popupPointerDownHandler = this.onPointerDown.bind(this);
|
|
10106
10104
|
this.data = [];
|
|
10107
10105
|
this.direction = this.localization.rtl ? 'rtl' : 'ltr';
|
|
10108
10106
|
this.subscribeEvents();
|
|
@@ -10566,7 +10564,7 @@ class MultiSelectComponent {
|
|
|
10566
10564
|
return this._isFocused;
|
|
10567
10565
|
}
|
|
10568
10566
|
selectedDataItems = [];
|
|
10569
|
-
|
|
10567
|
+
popupPointerDownHandler;
|
|
10570
10568
|
isOpenPrevented = false;
|
|
10571
10569
|
customValueSubject = new Subject();
|
|
10572
10570
|
customValueSubscription;
|
|
@@ -11016,7 +11014,7 @@ class MultiSelectComponent {
|
|
|
11016
11014
|
destroyPopup() {
|
|
11017
11015
|
if (this.popupRef) {
|
|
11018
11016
|
this.popupRef.popupElement
|
|
11019
|
-
.removeEventListener('
|
|
11017
|
+
.removeEventListener('pointerdown', this.popupPointerDownHandler);
|
|
11020
11018
|
this.popupRef.close();
|
|
11021
11019
|
this.popupRef = null;
|
|
11022
11020
|
}
|
|
@@ -11050,7 +11048,7 @@ class MultiSelectComponent {
|
|
|
11050
11048
|
this.renderer.setAttribute(popupWrapper, 'role', 'region');
|
|
11051
11049
|
this.renderer.setAttribute(popupWrapper, 'aria-label', this.messageFor('popupLabel'));
|
|
11052
11050
|
}
|
|
11053
|
-
popupWrapper.addEventListener('
|
|
11051
|
+
popupWrapper.addEventListener('pointerdown', this.popupPointerDownHandler);
|
|
11054
11052
|
popupWrapper.style.minWidth = min;
|
|
11055
11053
|
popupWrapper.style.width = max;
|
|
11056
11054
|
popupWrapper.style.height = this.height;
|
|
@@ -155,7 +155,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
155
155
|
/**
|
|
156
156
|
* @hidden
|
|
157
157
|
*/
|
|
158
|
-
|
|
158
|
+
onPointerDown(event: any): void;
|
|
159
159
|
/**
|
|
160
160
|
* @hidden
|
|
161
161
|
*/
|
|
@@ -639,7 +639,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
639
639
|
set isFocused(isFocused: boolean);
|
|
640
640
|
get isFocused(): boolean;
|
|
641
641
|
private selectedDataItems;
|
|
642
|
-
private
|
|
642
|
+
private popupPointerDownHandler;
|
|
643
643
|
private isOpenPrevented;
|
|
644
644
|
private customValueSubject;
|
|
645
645
|
private customValueSubscription;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.5.0-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": 1744092360,
|
|
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.
|
|
35
|
-
"@progress/kendo-angular-utils": "18.
|
|
36
|
-
"@progress/kendo-angular-l10n": "18.
|
|
37
|
-
"@progress/kendo-angular-navigation": "18.
|
|
38
|
-
"@progress/kendo-angular-popup": "18.
|
|
39
|
-
"@progress/kendo-angular-icons": "18.
|
|
40
|
-
"@progress/kendo-angular-treeview": "18.
|
|
34
|
+
"@progress/kendo-angular-common": "18.5.0-develop.10",
|
|
35
|
+
"@progress/kendo-angular-utils": "18.5.0-develop.10",
|
|
36
|
+
"@progress/kendo-angular-l10n": "18.5.0-develop.10",
|
|
37
|
+
"@progress/kendo-angular-navigation": "18.5.0-develop.10",
|
|
38
|
+
"@progress/kendo-angular-popup": "18.5.0-develop.10",
|
|
39
|
+
"@progress/kendo-angular-icons": "18.5.0-develop.10",
|
|
40
|
+
"@progress/kendo-angular-treeview": "18.5.0-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.
|
|
45
|
+
"@progress/kendo-angular-schematics": "18.5.0-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.
|
|
7
|
+
'@progress/kendo-angular-inputs': '18.5.0-develop.10',
|
|
8
8
|
// peers of inputs
|
|
9
|
-
'@progress/kendo-angular-intl': '18.
|
|
9
|
+
'@progress/kendo-angular-intl': '18.5.0-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'
|