@progress/kendo-angular-layout 17.0.0-develop.23 → 17.0.0-develop.25

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.
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-layout',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1730104827,
13
- version: '17.0.0-develop.23',
12
+ publishDate: 1730196037,
13
+ version: '17.0.0-develop.25',
14
14
  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'
15
15
  };
@@ -148,7 +148,7 @@ export class SplitterComponent {
148
148
  }
149
149
  ngAfterContentInit() {
150
150
  this.reconfigure();
151
- this.setFixedHeight();
151
+ isDocumentAvailable() && this.setFixedHeight();
152
152
  const allHaveFixedSize = this.panes.length && Array.from(this.panes).every(p => p.fixedSize);
153
153
  if (allHaveFixedSize && isDevMode()) {
154
154
  throw new Error(`
@@ -158,7 +158,7 @@ export class SplitterComponent {
158
158
  }
159
159
  this._styleObserver = new MutationObserver(() => {
160
160
  this.ngZone.runOutsideAngular(() => {
161
- this.setFixedHeight();
161
+ isDocumentAvailable() && this.setFixedHeight();
162
162
  });
163
163
  });
164
164
  this._styleObserver.observe(this.element.nativeElement, { attributeFilter: ['style'] });
@@ -28,8 +28,8 @@ const packageMetadata = {
28
28
  name: '@progress/kendo-angular-layout',
29
29
  productName: 'Kendo UI for Angular',
30
30
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
31
- publishDate: 1730104827,
32
- version: '17.0.0-develop.23',
31
+ publishDate: 1730196037,
32
+ version: '17.0.0-develop.25',
33
33
  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'
34
34
  };
35
35
 
@@ -2599,7 +2599,7 @@ class SplitterComponent {
2599
2599
  }
2600
2600
  ngAfterContentInit() {
2601
2601
  this.reconfigure();
2602
- this.setFixedHeight();
2602
+ isDocumentAvailable() && this.setFixedHeight();
2603
2603
  const allHaveFixedSize = this.panes.length && Array.from(this.panes).every(p => p.fixedSize);
2604
2604
  if (allHaveFixedSize && isDevMode()) {
2605
2605
  throw new Error(`
@@ -2609,7 +2609,7 @@ class SplitterComponent {
2609
2609
  }
2610
2610
  this._styleObserver = new MutationObserver(() => {
2611
2611
  this.ngZone.runOutsideAngular(() => {
2612
- this.setFixedHeight();
2612
+ isDocumentAvailable() && this.setFixedHeight();
2613
2613
  });
2614
2614
  });
2615
2615
  this._styleObserver.observe(this.element.nativeElement, { attributeFilter: ['style'] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "17.0.0-develop.23",
3
+ "version": "17.0.0-develop.25",
4
4
  "description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -39,17 +39,17 @@
39
39
  "@angular/core": "16 - 18",
40
40
  "@angular/platform-browser": "16 - 18",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "17.0.0-develop.23",
43
- "@progress/kendo-angular-l10n": "17.0.0-develop.23",
44
- "@progress/kendo-angular-progressbar": "17.0.0-develop.23",
45
- "@progress/kendo-angular-icons": "17.0.0-develop.23",
46
- "@progress/kendo-angular-buttons": "17.0.0-develop.23",
47
- "@progress/kendo-angular-intl": "17.0.0-develop.23",
42
+ "@progress/kendo-angular-common": "17.0.0-develop.25",
43
+ "@progress/kendo-angular-l10n": "17.0.0-develop.25",
44
+ "@progress/kendo-angular-progressbar": "17.0.0-develop.25",
45
+ "@progress/kendo-angular-icons": "17.0.0-develop.25",
46
+ "@progress/kendo-angular-buttons": "17.0.0-develop.25",
47
+ "@progress/kendo-angular-intl": "17.0.0-develop.25",
48
48
  "rxjs": "^6.5.3 || ^7.0.0"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.3.1",
52
- "@progress/kendo-angular-schematics": "17.0.0-develop.23",
52
+ "@progress/kendo-angular-schematics": "17.0.0-develop.25",
53
53
  "@progress/kendo-draggable": "^3.0.2"
54
54
  },
55
55
  "schematics": "./schematics/collection.json",