@progress/kendo-angular-dropdowns 24.0.0-develop.34 → 24.0.0-develop.36
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.
|
@@ -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: '24.0.0-develop.
|
|
40
|
+
publishDate: 1779120428,
|
|
41
|
+
version: '24.0.0-develop.36',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -9687,7 +9687,7 @@ class MultiSelectComponent {
|
|
|
9687
9687
|
/**
|
|
9688
9688
|
* @hidden
|
|
9689
9689
|
*/
|
|
9690
|
-
|
|
9690
|
+
onMouseDown(event) {
|
|
9691
9691
|
event.preventDefault();
|
|
9692
9692
|
}
|
|
9693
9693
|
/**
|
|
@@ -10153,7 +10153,7 @@ class MultiSelectComponent {
|
|
|
10153
10153
|
this.injector = injector;
|
|
10154
10154
|
this.adaptiveService = adaptiveService;
|
|
10155
10155
|
validatePackage(packageMetadata);
|
|
10156
|
-
this.
|
|
10156
|
+
this.popupMouseDownHandler = this.onMouseDown.bind(this);
|
|
10157
10157
|
this.data = [];
|
|
10158
10158
|
this.direction = this.localization.rtl ? 'rtl' : 'ltr';
|
|
10159
10159
|
this.subscribeEvents();
|
|
@@ -10614,7 +10614,7 @@ class MultiSelectComponent {
|
|
|
10614
10614
|
return this._isFocused;
|
|
10615
10615
|
}
|
|
10616
10616
|
selectedDataItems = [];
|
|
10617
|
-
|
|
10617
|
+
popupMouseDownHandler;
|
|
10618
10618
|
isOpenPrevented = false;
|
|
10619
10619
|
customValueSubject = new Subject();
|
|
10620
10620
|
customValueSubscription;
|
|
@@ -11090,7 +11090,7 @@ class MultiSelectComponent {
|
|
|
11090
11090
|
destroyPopup() {
|
|
11091
11091
|
if (this.popupRef) {
|
|
11092
11092
|
this.popupRef.popupElement
|
|
11093
|
-
.removeEventListener('
|
|
11093
|
+
.removeEventListener('mousedown', this.popupMouseDownHandler);
|
|
11094
11094
|
this.popupRef.close();
|
|
11095
11095
|
this.popupRef = null;
|
|
11096
11096
|
}
|
|
@@ -11124,7 +11124,8 @@ class MultiSelectComponent {
|
|
|
11124
11124
|
this.renderer.setAttribute(popupWrapper, 'role', 'region');
|
|
11125
11125
|
this.renderer.setAttribute(popupWrapper, 'aria-label', this.messageFor('popupLabel'));
|
|
11126
11126
|
}
|
|
11127
|
-
|
|
11127
|
+
// pointerdown causes issues with some ios versions; use mousedown instead - https://github.com/telerik/kendo-angular/issues/4912
|
|
11128
|
+
popupWrapper.addEventListener('mousedown', this.popupMouseDownHandler);
|
|
11128
11129
|
popupWrapper.style.minWidth = min;
|
|
11129
11130
|
popupWrapper.style.width = max;
|
|
11130
11131
|
popupWrapper.style.height = this.height;
|
|
@@ -159,7 +159,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
159
159
|
/**
|
|
160
160
|
* @hidden
|
|
161
161
|
*/
|
|
162
|
-
|
|
162
|
+
onMouseDown(event: any): void;
|
|
163
163
|
/**
|
|
164
164
|
* @hidden
|
|
165
165
|
*/
|
|
@@ -579,7 +579,7 @@ export declare class MultiSelectComponent implements OnDestroy, OnChanges, OnIni
|
|
|
579
579
|
set isFocused(isFocused: boolean);
|
|
580
580
|
get isFocused(): boolean;
|
|
581
581
|
private selectedDataItems;
|
|
582
|
-
private
|
|
582
|
+
private popupMouseDownHandler;
|
|
583
583
|
private isOpenPrevented;
|
|
584
584
|
private customValueSubject;
|
|
585
585
|
private customValueSubscription;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1779120428,
|
|
11
|
+
"version": "24.0.0-develop.36",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dropdowns",
|
|
3
|
-
"version": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.36",
|
|
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",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"package": {
|
|
122
122
|
"productName": "Kendo UI for Angular",
|
|
123
123
|
"productCode": "KENDOUIANGULAR",
|
|
124
|
-
"publishDate":
|
|
124
|
+
"publishDate": 1779120428,
|
|
125
125
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
126
126
|
}
|
|
127
127
|
},
|
|
@@ -132,18 +132,18 @@
|
|
|
132
132
|
"@angular/forms": "19 - 21",
|
|
133
133
|
"@angular/platform-browser": "19 - 21",
|
|
134
134
|
"@progress/kendo-licensing": "^1.11.0",
|
|
135
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
136
|
-
"@progress/kendo-angular-utils": "24.0.0-develop.
|
|
137
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
138
|
-
"@progress/kendo-angular-navigation": "24.0.0-develop.
|
|
139
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
140
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
141
|
-
"@progress/kendo-angular-treeview": "24.0.0-develop.
|
|
135
|
+
"@progress/kendo-angular-common": "24.0.0-develop.36",
|
|
136
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.36",
|
|
137
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.36",
|
|
138
|
+
"@progress/kendo-angular-navigation": "24.0.0-develop.36",
|
|
139
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.36",
|
|
140
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.36",
|
|
141
|
+
"@progress/kendo-angular-treeview": "24.0.0-develop.36",
|
|
142
142
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
143
143
|
},
|
|
144
144
|
"dependencies": {
|
|
145
145
|
"tslib": "^2.3.1",
|
|
146
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
146
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.36",
|
|
147
147
|
"@progress/kendo-common": "^1.0.1"
|
|
148
148
|
},
|
|
149
149
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,9 +9,9 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DropDownsModule', package: 'dropdowns', peerDependencies: {
|
|
11
11
|
// peers of the treeview
|
|
12
|
-
'@progress/kendo-angular-inputs': '24.0.0-develop.
|
|
12
|
+
'@progress/kendo-angular-inputs': '24.0.0-develop.36',
|
|
13
13
|
// peers of inputs
|
|
14
|
-
'@progress/kendo-angular-intl': '24.0.0-develop.
|
|
14
|
+
'@progress/kendo-angular-intl': '24.0.0-develop.36',
|
|
15
15
|
'@progress/kendo-drawing': '^1.17.2',
|
|
16
16
|
// Peer dependency of icons
|
|
17
17
|
'@progress/kendo-svg-icons': '^4.0.0'
|