@progress/kendo-angular-common 24.1.1-develop.1 → 24.2.0-develop.10
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.
|
@@ -2,4 +2,7 @@
|
|
|
2
2
|
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* Specifies the orientation of the `SeparatorComponent` when using adornments.
|
|
7
|
+
*/
|
|
5
8
|
export type SeparatorOrientation = 'horizontal' | 'vertical';
|
|
@@ -619,8 +619,10 @@ class ResizeCompatService extends ResizeService {
|
|
|
619
619
|
}
|
|
620
620
|
if (this.expand) {
|
|
621
621
|
const element = this.element?.nativeElement;
|
|
622
|
-
element
|
|
623
|
-
|
|
622
|
+
if (element) {
|
|
623
|
+
element.removeChild(this.expand);
|
|
624
|
+
element.removeChild(this.shrink);
|
|
625
|
+
}
|
|
624
626
|
this.expand.removeChild(this.expandChild);
|
|
625
627
|
this.expand = this.expandChild = this.shrink = this.element = null;
|
|
626
628
|
}
|
|
@@ -633,7 +635,10 @@ class ResizeCompatService extends ResizeService {
|
|
|
633
635
|
return false;
|
|
634
636
|
}
|
|
635
637
|
init() {
|
|
636
|
-
const parentElement = this.parentElement = this.element?.nativeElement
|
|
638
|
+
const parentElement = this.parentElement = this.element?.nativeElement?.parentElement;
|
|
639
|
+
if (!parentElement) {
|
|
640
|
+
return;
|
|
641
|
+
}
|
|
637
642
|
if (computedProp(parentElement, 'position') === 'static') {
|
|
638
643
|
parentElement.style.position = 'relative';
|
|
639
644
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-common",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.2.0-develop.10",
|
|
4
4
|
"description": "Kendo UI for Angular - Utility Package",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@progress/kendo-common": "^1.0.1",
|
|
24
24
|
"@progress/kendo-draggable": "^3.0.2",
|
|
25
25
|
"tslib": "^2.3.1",
|
|
26
|
-
"@progress/kendo-angular-schematics": "24.
|
|
26
|
+
"@progress/kendo-angular-schematics": "24.2.0-develop.10"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|