@progress/kendo-angular-utils 17.0.0-develop.12 → 17.0.0-develop.13

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.
@@ -155,6 +155,8 @@ export class DragTargetDirective {
155
155
  }
156
156
  ngOnDestroy() {
157
157
  this.domSubscriptions.forEach(subscription => subscription());
158
+ const currentDragTargetIndex = this.service.dragTargets.indexOf(this.dragTarget);
159
+ this.service.dragTargets.splice(currentDragTargetIndex, 1);
158
160
  }
159
161
  handlePress(event) {
160
162
  if (this.dragDelay > 0) {
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-utils',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1729256703,
13
- version: '17.0.0-develop.12',
12
+ publishDate: 1729257919,
13
+ version: '17.0.0-develop.13',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -42,8 +42,8 @@ const packageMetadata = {
42
42
  name: '@progress/kendo-angular-utils',
43
43
  productName: 'Kendo UI for Angular',
44
44
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
45
- publishDate: 1729256703,
46
- version: '17.0.0-develop.12',
45
+ publishDate: 1729257919,
46
+ version: '17.0.0-develop.13',
47
47
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
48
48
  };
49
49
 
@@ -1211,6 +1211,8 @@ class DragTargetDirective {
1211
1211
  }
1212
1212
  ngOnDestroy() {
1213
1213
  this.domSubscriptions.forEach(subscription => subscription());
1214
+ const currentDragTargetIndex = this.service.dragTargets.indexOf(this.dragTarget);
1215
+ this.service.dragTargets.splice(currentDragTargetIndex, 1);
1214
1216
  }
1215
1217
  handlePress(event) {
1216
1218
  if (this.dragDelay > 0) {
@@ -42,8 +42,8 @@ const packageMetadata = {
42
42
  name: '@progress/kendo-angular-utils',
43
43
  productName: 'Kendo UI for Angular',
44
44
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
45
- publishDate: 1729256703,
46
- version: '17.0.0-develop.12',
45
+ publishDate: 1729257919,
46
+ version: '17.0.0-develop.13',
47
47
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
48
48
  };
49
49
 
@@ -1208,6 +1208,8 @@ class DragTargetDirective {
1208
1208
  }
1209
1209
  ngOnDestroy() {
1210
1210
  this.domSubscriptions.forEach(subscription => subscription());
1211
+ const currentDragTargetIndex = this.service.dragTargets.indexOf(this.dragTarget);
1212
+ this.service.dragTargets.splice(currentDragTargetIndex, 1);
1211
1213
  }
1212
1214
  handlePress(event) {
1213
1215
  if (this.dragDelay > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-utils",
3
- "version": "17.0.0-develop.12",
3
+ "version": "17.0.0-develop.13",
4
4
  "description": "Kendo UI Angular utils component",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -23,12 +23,12 @@
23
23
  "@angular/core": "15 - 18",
24
24
  "@angular/platform-browser": "15 - 18",
25
25
  "@progress/kendo-licensing": "^1.0.2",
26
- "@progress/kendo-angular-common": "17.0.0-develop.12",
26
+ "@progress/kendo-angular-common": "17.0.0-develop.13",
27
27
  "rxjs": "^6.5.3 || ^7.0.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "tslib": "^2.3.1",
31
- "@progress/kendo-angular-schematics": "17.0.0-develop.12",
31
+ "@progress/kendo-angular-schematics": "17.0.0-develop.13",
32
32
  "@progress/kendo-draggable-common": "^0.2.3"
33
33
  },
34
34
  "schematics": "./schematics/collection.json",