@progress/kendo-angular-layout 16.8.0 → 16.9.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.
@@ -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: 1724741767,
13
- version: '16.8.0',
12
+ publishDate: 1724927076,
13
+ version: '16.9.0-develop.10',
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
  };
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /* eslint-disable @typescript-eslint/no-explicit-any */
6
- import { Component, ElementRef, Host, HostBinding, Input, Renderer2 } from '@angular/core';
6
+ import { ChangeDetectorRef, Component, ElementRef, Host, HostBinding, Input, Renderer2 } from '@angular/core';
7
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { DraggableDirective, Keys } from '@progress/kendo-angular-common';
9
9
  import { SplitterService } from './splitter.service';
@@ -34,12 +34,13 @@ const createMoveStream = (draggable) => mouseDown => draggable.kendoDrag
34
34
  * @hidden
35
35
  */
36
36
  export class SplitterBarComponent {
37
- constructor(draggable, localization, splitterService, element, renderer) {
37
+ constructor(draggable, localization, splitterService, element, renderer, cdr) {
38
38
  this.draggable = draggable;
39
39
  this.localization = localization;
40
40
  this.splitterService = splitterService;
41
41
  this.element = element;
42
42
  this.renderer = renderer;
43
+ this.cdr = cdr;
43
44
  this.ariaRole = 'separator';
44
45
  this.focused = false;
45
46
  this.orientation = 'horizontal';
@@ -187,6 +188,7 @@ export class SplitterBarComponent {
187
188
  else {
188
189
  this.tryToggleNearest();
189
190
  }
191
+ this.cdr.markForCheck();
190
192
  }
191
193
  get expandLast() {
192
194
  const panes = this.splitterService.panes;
@@ -217,7 +219,7 @@ export class SplitterBarComponent {
217
219
  }
218
220
  }
219
221
  }
220
- SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1.DraggableDirective, host: true }, { token: i2.LocalizationService }, { token: i3.SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
222
+ SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1.DraggableDirective, host: true }, { token: i2.LocalizationService }, { token: i3.SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
221
223
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SplitterBarComponent, isStandalone: true, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.aria-orientation": "this.hostOrientation", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
222
224
  <div *ngIf="shouldShowIcon('prev')" class="k-collapse-prev" (click)="togglePrevious()">
223
225
  <kendo-icon-wrapper
@@ -261,7 +263,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
261
263
  }]
262
264
  }], ctorParameters: function () { return [{ type: i1.DraggableDirective, decorators: [{
263
265
  type: Host
264
- }] }, { type: i2.LocalizationService }, { type: i3.SplitterService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { ariaRole: [{
266
+ }] }, { type: i2.LocalizationService }, { type: i3.SplitterService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { ariaRole: [{
265
267
  type: HostBinding,
266
268
  args: ['attr.role']
267
269
  }], focused: [{
@@ -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: 1724741767,
32
- version: '16.8.0',
31
+ publishDate: 1724927076,
32
+ version: '16.9.0-develop.10',
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
 
@@ -2019,12 +2019,13 @@ const createMoveStream = (draggable) => mouseDown => draggable.kendoDrag
2019
2019
  * @hidden
2020
2020
  */
2021
2021
  class SplitterBarComponent {
2022
- constructor(draggable, localization, splitterService, element, renderer) {
2022
+ constructor(draggable, localization, splitterService, element, renderer, cdr) {
2023
2023
  this.draggable = draggable;
2024
2024
  this.localization = localization;
2025
2025
  this.splitterService = splitterService;
2026
2026
  this.element = element;
2027
2027
  this.renderer = renderer;
2028
+ this.cdr = cdr;
2028
2029
  this.ariaRole = 'separator';
2029
2030
  this.focused = false;
2030
2031
  this.orientation = 'horizontal';
@@ -2172,6 +2173,7 @@ class SplitterBarComponent {
2172
2173
  else {
2173
2174
  this.tryToggleNearest();
2174
2175
  }
2176
+ this.cdr.markForCheck();
2175
2177
  }
2176
2178
  get expandLast() {
2177
2179
  const panes = this.splitterService.panes;
@@ -2202,7 +2204,7 @@ class SplitterBarComponent {
2202
2204
  }
2203
2205
  }
2204
2206
  }
2205
- SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i1.LocalizationService }, { token: SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
2207
+ SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i1.LocalizationService }, { token: SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
2206
2208
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SplitterBarComponent, isStandalone: true, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.aria-orientation": "this.hostOrientation", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
2207
2209
  <div *ngIf="shouldShowIcon('prev')" class="k-collapse-prev" (click)="togglePrevious()">
2208
2210
  <kendo-icon-wrapper
@@ -2247,7 +2249,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2247
2249
  }], ctorParameters: function () {
2248
2250
  return [{ type: i1$1.DraggableDirective, decorators: [{
2249
2251
  type: Host
2250
- }] }, { type: i1.LocalizationService }, { type: SplitterService }, { type: i0.ElementRef }, { type: i0.Renderer2 }];
2252
+ }] }, { type: i1.LocalizationService }, { type: SplitterService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }];
2251
2253
  }, propDecorators: { ariaRole: [{
2252
2254
  type: HostBinding,
2253
2255
  args: ['attr.role']
@@ -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: 1724741767,
32
- version: '16.8.0',
31
+ publishDate: 1724927076,
32
+ version: '16.9.0-develop.10',
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
 
@@ -2013,12 +2013,13 @@ const createMoveStream = (draggable) => mouseDown => draggable.kendoDrag
2013
2013
  * @hidden
2014
2014
  */
2015
2015
  class SplitterBarComponent {
2016
- constructor(draggable, localization, splitterService, element, renderer) {
2016
+ constructor(draggable, localization, splitterService, element, renderer, cdr) {
2017
2017
  this.draggable = draggable;
2018
2018
  this.localization = localization;
2019
2019
  this.splitterService = splitterService;
2020
2020
  this.element = element;
2021
2021
  this.renderer = renderer;
2022
+ this.cdr = cdr;
2022
2023
  this.ariaRole = 'separator';
2023
2024
  this.focused = false;
2024
2025
  this.orientation = 'horizontal';
@@ -2166,6 +2167,7 @@ class SplitterBarComponent {
2166
2167
  else {
2167
2168
  this.tryToggleNearest();
2168
2169
  }
2170
+ this.cdr.markForCheck();
2169
2171
  }
2170
2172
  get expandLast() {
2171
2173
  const panes = this.splitterService.panes;
@@ -2196,7 +2198,7 @@ class SplitterBarComponent {
2196
2198
  }
2197
2199
  }
2198
2200
  }
2199
- SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i1.LocalizationService }, { token: SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
2201
+ SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i1.LocalizationService }, { token: SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
2200
2202
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SplitterBarComponent, isStandalone: true, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.aria-orientation": "this.hostOrientation", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
2201
2203
  <div *ngIf="shouldShowIcon('prev')" class="k-collapse-prev" (click)="togglePrevious()">
2202
2204
  <kendo-icon-wrapper
@@ -2240,7 +2242,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
2240
2242
  }]
2241
2243
  }], ctorParameters: function () { return [{ type: i1$1.DraggableDirective, decorators: [{
2242
2244
  type: Host
2243
- }] }, { type: i1.LocalizationService }, { type: SplitterService }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { ariaRole: [{
2245
+ }] }, { type: i1.LocalizationService }, { type: SplitterService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { ariaRole: [{
2244
2246
  type: HostBinding,
2245
2247
  args: ['attr.role']
2246
2248
  }], focused: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "16.8.0",
3
+ "version": "16.9.0-develop.10",
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": "15 - 18",
40
40
  "@angular/platform-browser": "15 - 18",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "16.8.0",
43
- "@progress/kendo-angular-l10n": "16.8.0",
44
- "@progress/kendo-angular-progressbar": "16.8.0",
45
- "@progress/kendo-angular-icons": "16.8.0",
46
- "@progress/kendo-angular-buttons": "16.8.0",
47
- "@progress/kendo-angular-intl": "16.8.0",
42
+ "@progress/kendo-angular-common": "16.9.0-develop.10",
43
+ "@progress/kendo-angular-l10n": "16.9.0-develop.10",
44
+ "@progress/kendo-angular-progressbar": "16.9.0-develop.10",
45
+ "@progress/kendo-angular-icons": "16.9.0-develop.10",
46
+ "@progress/kendo-angular-buttons": "16.9.0-develop.10",
47
+ "@progress/kendo-angular-intl": "16.9.0-develop.10",
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": "16.8.0",
52
+ "@progress/kendo-angular-schematics": "16.9.0-develop.10",
53
53
  "@progress/kendo-draggable": "^3.0.2"
54
54
  },
55
55
  "schematics": "./schematics/collection.json",
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 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
- import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
5
+ import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
6
6
  import { LocalizationService } from '@progress/kendo-angular-l10n';
7
7
  import { Orientation } from '../common/orientation';
8
8
  import { DraggableDirective } from '@progress/kendo-angular-common';
@@ -18,6 +18,7 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
18
18
  private splitterService;
19
19
  element: ElementRef<HTMLElement>;
20
20
  private renderer;
21
+ private cdr;
21
22
  ariaRole: string;
22
23
  focused: boolean;
23
24
  get hostOrientation(): string;
@@ -27,7 +28,7 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
27
28
  orientation: Orientation;
28
29
  index: number;
29
30
  private subscriptions;
30
- constructor(draggable: DraggableDirective, localization: LocalizationService, splitterService: SplitterService, element: ElementRef<HTMLElement>, renderer: Renderer2);
31
+ constructor(draggable: DraggableDirective, localization: LocalizationService, splitterService: SplitterService, element: ElementRef<HTMLElement>, renderer: Renderer2, cdr: ChangeDetectorRef);
31
32
  ngOnInit(): void;
32
33
  ngOnDestroy(): void;
33
34
  togglePrevious(): void;
@@ -42,6 +43,6 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
42
43
  private get expandLast();
43
44
  private onKeyDown;
44
45
  private tryToggleNearest;
45
- static ɵfac: i0.ɵɵFactoryDeclaration<SplitterBarComponent, [{ host: true; }, null, null, null, null]>;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitterBarComponent, [{ host: true; }, null, null, null, null, null]>;
46
47
  static ɵcmp: i0.ɵɵComponentDeclaration<SplitterBarComponent, "kendo-splitter-bar", never, { "orientation": "orientation"; "index": "index"; }, {}, never, never, true, never>;
47
48
  }