@progress/kendo-angular-dropdowns 16.7.0 → 16.7.1-develop.2

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.
@@ -1075,8 +1075,7 @@ export class MultiSelectComponent {
1075
1075
  this.windowSize = windowSize();
1076
1076
  this.cdr.detectChanges();
1077
1077
  this.searchbar.setInputSize();
1078
- this.subs.add(this.renderer.listen(this.searchbar.input.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
1079
- this.subs.add(this.renderer.listen(this.tagList.hostElement.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
1078
+ this.subs.add(this.renderer.listen(this.wrapper.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
1080
1079
  this.subs.add(this.renderer.listen(this.wrapper.nativeElement, 'keydown', this.handleKeydown.bind(this)));
1081
1080
  if (this.actionSheet && isDocumentAvailable()) {
1082
1081
  // The following syntax is used as it does not violate CSP compliance
@@ -1362,6 +1361,9 @@ export class MultiSelectComponent {
1362
1361
  }
1363
1362
  }
1364
1363
  handleMousedown(event) {
1364
+ if (event.target.closest('.k-input-prefix') || event.target.closest('.k-input-suffix')) {
1365
+ return;
1366
+ }
1365
1367
  if (!this.isActionSheetExpanded) {
1366
1368
  const inputElement = this.searchbar.input.nativeElement;
1367
1369
  if (event.button === 0) {
@@ -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: 1723115479,
13
- version: '16.7.0',
12
+ publishDate: 1723191994,
13
+ version: '16.7.1-develop.2',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -34,8 +34,8 @@ const packageMetadata = {
34
34
  name: '@progress/kendo-angular-dropdowns',
35
35
  productName: 'Kendo UI for Angular',
36
36
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
37
- publishDate: 1723115479,
38
- version: '16.7.0',
37
+ publishDate: 1723191994,
38
+ version: '16.7.1-develop.2',
39
39
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
40
40
  };
41
41
 
@@ -10006,8 +10006,7 @@ class MultiSelectComponent {
10006
10006
  this.windowSize = windowSize();
10007
10007
  this.cdr.detectChanges();
10008
10008
  this.searchbar.setInputSize();
10009
- this.subs.add(this.renderer.listen(this.searchbar.input.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
10010
- this.subs.add(this.renderer.listen(this.tagList.hostElement.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
10009
+ this.subs.add(this.renderer.listen(this.wrapper.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
10011
10010
  this.subs.add(this.renderer.listen(this.wrapper.nativeElement, 'keydown', this.handleKeydown.bind(this)));
10012
10011
  if (this.actionSheet && isDocumentAvailable()) {
10013
10012
  // The following syntax is used as it does not violate CSP compliance
@@ -10293,6 +10292,9 @@ class MultiSelectComponent {
10293
10292
  }
10294
10293
  }
10295
10294
  handleMousedown(event) {
10295
+ if (event.target.closest('.k-input-prefix') || event.target.closest('.k-input-suffix')) {
10296
+ return;
10297
+ }
10296
10298
  if (!this.isActionSheetExpanded) {
10297
10299
  const inputElement = this.searchbar.input.nativeElement;
10298
10300
  if (event.button === 0) {
@@ -34,8 +34,8 @@ const packageMetadata = {
34
34
  name: '@progress/kendo-angular-dropdowns',
35
35
  productName: 'Kendo UI for Angular',
36
36
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
37
- publishDate: 1723115479,
38
- version: '16.7.0',
37
+ publishDate: 1723191994,
38
+ version: '16.7.1-develop.2',
39
39
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
40
40
  };
41
41
 
@@ -9986,8 +9986,7 @@ class MultiSelectComponent {
9986
9986
  this.windowSize = windowSize();
9987
9987
  this.cdr.detectChanges();
9988
9988
  this.searchbar.setInputSize();
9989
- this.subs.add(this.renderer.listen(this.searchbar.input.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
9990
- this.subs.add(this.renderer.listen(this.tagList.hostElement.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
9989
+ this.subs.add(this.renderer.listen(this.wrapper.nativeElement, 'mousedown', this.handleMousedown.bind(this)));
9991
9990
  this.subs.add(this.renderer.listen(this.wrapper.nativeElement, 'keydown', this.handleKeydown.bind(this)));
9992
9991
  if (this.actionSheet && isDocumentAvailable()) {
9993
9992
  // The following syntax is used as it does not violate CSP compliance
@@ -10273,6 +10272,9 @@ class MultiSelectComponent {
10273
10272
  }
10274
10273
  }
10275
10274
  handleMousedown(event) {
10275
+ if (event.target.closest('.k-input-prefix') || event.target.closest('.k-input-suffix')) {
10276
+ return;
10277
+ }
10276
10278
  if (!this.isActionSheetExpanded) {
10277
10279
  const inputElement = this.searchbar.input.nativeElement;
10278
10280
  if (event.button === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dropdowns",
3
- "version": "16.7.0",
3
+ "version": "16.7.1-develop.2",
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,17 +25,17 @@
25
25
  "@angular/forms": "15 - 18",
26
26
  "@angular/platform-browser": "15 - 18",
27
27
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-common": "16.7.0",
29
- "@progress/kendo-angular-l10n": "16.7.0",
30
- "@progress/kendo-angular-navigation": "16.7.0",
31
- "@progress/kendo-angular-popup": "16.7.0",
32
- "@progress/kendo-angular-icons": "16.7.0",
33
- "@progress/kendo-angular-treeview": "16.7.0",
28
+ "@progress/kendo-angular-common": "16.7.1-develop.2",
29
+ "@progress/kendo-angular-l10n": "16.7.1-develop.2",
30
+ "@progress/kendo-angular-navigation": "16.7.1-develop.2",
31
+ "@progress/kendo-angular-popup": "16.7.1-develop.2",
32
+ "@progress/kendo-angular-icons": "16.7.1-develop.2",
33
+ "@progress/kendo-angular-treeview": "16.7.1-develop.2",
34
34
  "rxjs": "^6.5.3 || ^7.0.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "16.7.0",
38
+ "@progress/kendo-angular-schematics": "16.7.1-develop.2",
39
39
  "@progress/kendo-common": "^0.2.1"
40
40
  },
41
41
  "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': '16.7.0',
7
+ '@progress/kendo-angular-inputs': '16.7.1-develop.2',
8
8
  // peers of inputs
9
- '@progress/kendo-angular-intl': '16.7.0',
9
+ '@progress/kendo-angular-intl': '16.7.1-develop.2',
10
10
  '@progress/kendo-drawing': '^1.17.2',
11
11
  // Peer dependency of icons
12
12
  '@progress/kendo-svg-icons': '^3.0.0'