@progress/kendo-angular-popup 18.1.0-develop.3 → 18.1.0-develop.31

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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1738245613,
14
- version: '18.1.0-develop.3',
13
+ publishDate: 1739264068,
14
+ version: '18.1.0-develop.31',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
16
16
  };
@@ -165,8 +165,15 @@ export class PopupService {
165
165
  component.destroy();
166
166
  }
167
167
  popupComponentRef.destroy();
168
- // Angular will not remove the element unless the change detection is triggered
169
- removeElement(popupElement);
168
+ // Issue in Chrome causes https://github.com/telerik/kendo-angular/issues/4434
169
+ // To be fixed in Chrome, remove try..catch afterwards
170
+ // https://chromestatus.com/feature/5128696823545856
171
+ // https://issues.chromium.org/issues/41484175
172
+ try {
173
+ // Angular will not remove the element unless the change detection is triggered
174
+ removeElement(popupElement);
175
+ }
176
+ catch { /* noop */ }
170
177
  },
171
178
  content: component,
172
179
  popup: popupComponentRef,
@@ -692,8 +692,8 @@ const packageMetadata = {
692
692
  productName: 'Kendo UI for Angular',
693
693
  productCode: 'KENDOUIANGULAR',
694
694
  productCodes: ['KENDOUIANGULAR'],
695
- publishDate: 1738245613,
696
- version: '18.1.0-develop.3',
695
+ publishDate: 1739264068,
696
+ version: '18.1.0-develop.31',
697
697
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
698
698
  };
699
699
 
@@ -1295,8 +1295,15 @@ class PopupService {
1295
1295
  component.destroy();
1296
1296
  }
1297
1297
  popupComponentRef.destroy();
1298
- // Angular will not remove the element unless the change detection is triggered
1299
- removeElement(popupElement);
1298
+ // Issue in Chrome causes https://github.com/telerik/kendo-angular/issues/4434
1299
+ // To be fixed in Chrome, remove try..catch afterwards
1300
+ // https://chromestatus.com/feature/5128696823545856
1301
+ // https://issues.chromium.org/issues/41484175
1302
+ try {
1303
+ // Angular will not remove the element unless the change detection is triggered
1304
+ removeElement(popupElement);
1305
+ }
1306
+ catch { /* noop */ }
1300
1307
  },
1301
1308
  content: component,
1302
1309
  popup: popupComponentRef,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-popup",
3
- "version": "18.1.0-develop.3",
3
+ "version": "18.1.0-develop.31",
4
4
  "description": "Kendo UI Angular Popup component - an easily customized popup from the most trusted provider of professional Angular components.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -19,7 +19,7 @@
19
19
  "package": {
20
20
  "productName": "Kendo UI for Angular",
21
21
  "productCode": "KENDOUIANGULAR",
22
- "publishDate": 1738245613,
22
+ "publishDate": 1739264068,
23
23
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
24
24
  }
25
25
  },
@@ -28,14 +28,14 @@
28
28
  "@angular/common": "16 - 19",
29
29
  "@angular/core": "16 - 19",
30
30
  "@angular/platform-browser": "16 - 19",
31
- "@progress/kendo-angular-common": "18.1.0-develop.3",
32
- "@progress/kendo-licensing": "^1.0.2",
31
+ "@progress/kendo-angular-common": "18.1.0-develop.31",
32
+ "@progress/kendo-licensing": "^1.4.0",
33
33
  "rxjs": "^6.5.3 || ^7.0.0"
34
34
  },
35
35
  "dependencies": {
36
36
  "@progress/kendo-popup-common": "^1.7.0",
37
37
  "tslib": "^2.3.1",
38
- "@progress/kendo-angular-schematics": "18.1.0-develop.3"
38
+ "@progress/kendo-angular-schematics": "18.1.0-develop.31"
39
39
  },
40
40
  "schematics": "./schematics/collection.json",
41
41
  "module": "fesm2022/progress-kendo-angular-popup.mjs",