@progress/kendo-angular-buttons 17.0.0-develop.31 → 17.0.0-develop.33

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.
@@ -272,10 +272,12 @@ export class DropDownButtonComponent extends ListButton {
272
272
  this.renderer = renderer;
273
273
  this._itemClick = this.itemClick;
274
274
  this._blur = this.onBlur;
275
- this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
276
- if (this.active) {
277
- this._active = false;
278
- }
275
+ zone.runOutsideAngular(() => {
276
+ this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
277
+ if (this.active) {
278
+ zone.run(() => this._active = false);
279
+ }
280
+ });
279
281
  });
280
282
  }
281
283
  ngAfterViewInit() {
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-buttons',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1730478591,
13
- version: '17.0.0-develop.31',
12
+ publishDate: 1730709810,
13
+ version: '17.0.0-develop.33',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -546,13 +546,15 @@ export class SplitButtonComponent extends ListButton {
546
546
  this.renderer = renderer;
547
547
  this._itemClick = this.itemClick;
548
548
  this._blur = this.onBlur;
549
- this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
550
- if (this.active) {
551
- this._active = false;
552
- }
553
- if (this.activeArrow) {
554
- this.activeArrow = false;
555
- }
549
+ zone.runOutsideAngular(() => {
550
+ this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
551
+ if (this.active) {
552
+ zone.run(() => this._active = false);
553
+ }
554
+ if (this.activeArrow) {
555
+ zone.run(() => this.activeArrow = false);
556
+ }
557
+ });
556
558
  });
557
559
  }
558
560
  /**
@@ -42,8 +42,8 @@ const packageMetadata = {
42
42
  name: '@progress/kendo-angular-buttons',
43
43
  productName: 'Kendo UI for Angular',
44
44
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
45
- publishDate: 1730478591,
46
- version: '17.0.0-develop.31',
45
+ publishDate: 1730709810,
46
+ version: '17.0.0-develop.33',
47
47
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
48
48
  };
49
49
 
@@ -3027,10 +3027,12 @@ class DropDownButtonComponent extends ListButton {
3027
3027
  this.renderer = renderer;
3028
3028
  this._itemClick = this.itemClick;
3029
3029
  this._blur = this.onBlur;
3030
- this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
3031
- if (this.active) {
3032
- this._active = false;
3033
- }
3030
+ zone.runOutsideAngular(() => {
3031
+ this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
3032
+ if (this.active) {
3033
+ zone.run(() => this._active = false);
3034
+ }
3035
+ });
3034
3036
  });
3035
3037
  }
3036
3038
  ngAfterViewInit() {
@@ -5170,13 +5172,15 @@ class SplitButtonComponent extends ListButton {
5170
5172
  this.renderer = renderer;
5171
5173
  this._itemClick = this.itemClick;
5172
5174
  this._blur = this.onBlur;
5173
- this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
5174
- if (this.active) {
5175
- this._active = false;
5176
- }
5177
- if (this.activeArrow) {
5178
- this.activeArrow = false;
5179
- }
5175
+ zone.runOutsideAngular(() => {
5176
+ this.documentMouseUpSub = this.renderer.listen('document', 'mouseup', () => {
5177
+ if (this.active) {
5178
+ zone.run(() => this._active = false);
5179
+ }
5180
+ if (this.activeArrow) {
5181
+ zone.run(() => this.activeArrow = false);
5182
+ }
5183
+ });
5180
5184
  });
5181
5185
  }
5182
5186
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-buttons",
3
- "version": "17.0.0-develop.31",
3
+ "version": "17.0.0-develop.33",
4
4
  "description": "Buttons Package for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -25,15 +25,15 @@
25
25
  "@angular/core": "16 - 18",
26
26
  "@angular/platform-browser": "16 - 18",
27
27
  "@progress/kendo-licensing": "^1.0.2",
28
- "@progress/kendo-angular-common": "17.0.0-develop.31",
29
- "@progress/kendo-angular-l10n": "17.0.0-develop.31",
30
- "@progress/kendo-angular-popup": "17.0.0-develop.31",
31
- "@progress/kendo-angular-icons": "17.0.0-develop.31",
28
+ "@progress/kendo-angular-common": "17.0.0-develop.33",
29
+ "@progress/kendo-angular-l10n": "17.0.0-develop.33",
30
+ "@progress/kendo-angular-popup": "17.0.0-develop.33",
31
+ "@progress/kendo-angular-icons": "17.0.0-develop.33",
32
32
  "rxjs": "^6.5.3 || ^7.0.0"
33
33
  },
34
34
  "dependencies": {
35
35
  "tslib": "^2.3.1",
36
- "@progress/kendo-angular-schematics": "17.0.0-develop.31",
36
+ "@progress/kendo-angular-schematics": "17.0.0-develop.33",
37
37
  "@progress/kendo-common": "^1.0.1"
38
38
  },
39
39
  "schematics": "./schematics/collection.json",