@progress/kendo-angular-popup 24.0.0-develop.2 → 24.0.0-develop.20
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.
- package/NOTICE.txt +2599 -172
- package/fesm2022/progress-kendo-angular-popup.mjs +13 -3
- package/package-metadata.mjs +2 -2
- package/package.json +4 -4
|
@@ -153,7 +153,17 @@ const zIndex = (anchor, container) => {
|
|
|
153
153
|
const result = [anchor].concat(parents(anchor, sibling)).reduce((index, p) => {
|
|
154
154
|
const zIndexStyle = p.style.zIndex || window.getComputedStyle(p).zIndex;
|
|
155
155
|
const current = parseInt(zIndexStyle, 10);
|
|
156
|
-
|
|
156
|
+
const updatedIndex = isNaN(current) ? index : Math.max(current, index);
|
|
157
|
+
if (!p.parentElement) {
|
|
158
|
+
return updatedIndex;
|
|
159
|
+
}
|
|
160
|
+
// Also check siblings of each ancestor to account for sibling stacking contexts
|
|
161
|
+
// that may have a higher z-index than the anchor's ancestors (e.g., pinned row containers)
|
|
162
|
+
return Array.from(p.parentElement.children).reduce((sibMax, sibl) => {
|
|
163
|
+
const sibZIndex = sibl.style.zIndex || window.getComputedStyle(sibl).zIndex;
|
|
164
|
+
const sibCurrent = parseInt(sibZIndex, 10);
|
|
165
|
+
return isNaN(sibCurrent) ? sibMax : Math.max(sibCurrent, sibMax);
|
|
166
|
+
}, updatedIndex);
|
|
157
167
|
}, 0);
|
|
158
168
|
return result ? (result + 1) : null;
|
|
159
169
|
};
|
|
@@ -683,8 +693,8 @@ const packageMetadata = {
|
|
|
683
693
|
productName: 'Kendo UI for Angular',
|
|
684
694
|
productCode: 'KENDOUIANGULAR',
|
|
685
695
|
productCodes: ['KENDOUIANGULAR'],
|
|
686
|
-
publishDate:
|
|
687
|
-
version: '24.0.0-develop.
|
|
696
|
+
publishDate: 1778149308,
|
|
697
|
+
version: '24.0.0-develop.20',
|
|
688
698
|
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'
|
|
689
699
|
};
|
|
690
700
|
|
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": 1778149308,
|
|
11
|
+
"version": "24.0.0-develop.20",
|
|
12
12
|
"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"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-popup",
|
|
3
|
-
"version": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.20",
|
|
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",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"package": {
|
|
35
35
|
"productName": "Kendo UI for Angular",
|
|
36
36
|
"productCode": "KENDOUIANGULAR",
|
|
37
|
-
"publishDate":
|
|
37
|
+
"publishDate": 1778149308,
|
|
38
38
|
"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"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"@angular/common": "19 - 21",
|
|
44
44
|
"@angular/core": "19 - 21",
|
|
45
45
|
"@angular/platform-browser": "19 - 21",
|
|
46
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
46
|
+
"@progress/kendo-angular-common": "24.0.0-develop.20",
|
|
47
47
|
"@progress/kendo-licensing": "^1.11.0",
|
|
48
48
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@progress/kendo-popup-common": "1.9.5",
|
|
52
52
|
"tslib": "^2.3.1",
|
|
53
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
53
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.20"
|
|
54
54
|
},
|
|
55
55
|
"schematics": "./schematics/collection.json",
|
|
56
56
|
"module": "fesm2022/progress-kendo-angular-popup.mjs",
|