@progress/kendo-angular-layout 17.0.0-develop.34 → 17.0.0-develop.35

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: 1730712008,
13
- version: '17.0.0-develop.34',
12
+ publishDate: 1730714497,
13
+ version: '17.0.0-develop.35',
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
  };
@@ -4,9 +4,9 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ChangeDetectorRef, Component, ElementRef, Input, NgZone, QueryList, Renderer2, ViewChild, ViewChildren, } from '@angular/core';
6
6
  import { caretAltLeftIcon, caretAltRightIcon } from '@progress/kendo-svg-icons';
7
- import { Subscription, fromEvent } from 'rxjs';
7
+ import { Subscription } from 'rxjs';
8
8
  import { TimelineCardComponent } from './timeline-card.component';
9
- import { Keys, guid, isChanged, isDocumentAvailable, isPresent } from '@progress/kendo-angular-common';
9
+ import { Keys, ResizeSensorComponent, guid, isChanged, isDocumentAvailable, isPresent } from '@progress/kendo-angular-common';
10
10
  import { animate, state, style, transition, trigger } from '@angular/animations';
11
11
  import { TimelineService } from './timeline.service';
12
12
  import { LocalizationService } from '@progress/kendo-angular-l10n';
@@ -92,7 +92,6 @@ export class TimelineHorizontalComponent {
92
92
  this.localization = localization;
93
93
  }
94
94
  ngOnInit() {
95
- this._zone.runOutsideAngular(() => isDocumentAvailable() && this.subscriptions.add(fromEvent(window, 'resize').subscribe(this.handleWindowResize.bind(this))));
96
95
  this.l10nChange();
97
96
  this.subscriptions.add(this.localization.changes.subscribe(this.l10nChange.bind(this)));
98
97
  if (this.events.length > 0) {
@@ -154,7 +153,7 @@ export class TimelineHorizontalComponent {
154
153
  ngOnDestroy() {
155
154
  this.subscriptions.unsubscribe();
156
155
  }
157
- handleWindowResize() {
156
+ onResize() {
158
157
  if (!isDocumentAvailable()) {
159
158
  return;
160
159
  }
@@ -486,24 +485,24 @@ export class TimelineHorizontalComponent {
486
485
  <button
487
486
  kendoButton
488
487
  [svgIcon]="svgLeftIcon"
488
+ icon="caret-alt-left"
489
489
  class="k-timeline-arrow k-timeline-arrow-left"
490
490
  rounded="full"
491
491
  [title]="previousTitle"
492
492
  (click)="previousClick()"
493
493
  [disabled]="isFirstRange"
494
- [attr.aria-hidden]="true"
495
494
  tabindex="-1"
496
495
  type="button"
497
496
  ></button>
498
497
  <button
499
498
  kendoButton
500
499
  [svgIcon]="svgRightIcon"
500
+ icon="caret-alt-right"
501
501
  class="k-timeline-arrow k-timeline-arrow-right"
502
502
  rounded="full"
503
503
  [title]="nextTitle"
504
504
  (click)="nextClick()"
505
505
  [disabled]="isLastRange"
506
- [attr.aria-hidden]="true"
507
506
  tabindex="-1"
508
507
  type="button"
509
508
  ></button>
@@ -577,8 +576,9 @@ export class TimelineHorizontalComponent {
577
576
  </kendo-timeline-card>
578
577
  </li>
579
578
  </ul>
579
+ <kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
580
580
  </div>
581
- `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TimelineCardComponent, selector: "kendo-timeline-card", inputs: ["event", "expanded", "collapsible", "reversed", "orientation", "navigable", "tabIndex", "animationDuration", "index", "eventWidth", "eventHeight", "headerTemplate", "bodyTemplate", "actionsTemplate", "calloutStyle"], exportAs: ["kendoTimelineCard"] }, { kind: "pipe", type: DatePipe, name: "kendoDate" }], animations: [
581
+ `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TimelineCardComponent, selector: "kendo-timeline-card", inputs: ["event", "expanded", "collapsible", "reversed", "orientation", "navigable", "tabIndex", "animationDuration", "index", "eventWidth", "eventHeight", "headerTemplate", "bodyTemplate", "actionsTemplate", "calloutStyle"], exportAs: ["kendoTimelineCard"] }, { kind: "pipe", type: DatePipe, name: "kendoDate" }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], animations: [
582
582
  trigger('trackSlide', [
583
583
  state('left', style({
584
584
  transform: `translateX({{transformValue}}%)`,
@@ -632,24 +632,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
632
632
  <button
633
633
  kendoButton
634
634
  [svgIcon]="svgLeftIcon"
635
+ icon="caret-alt-left"
635
636
  class="k-timeline-arrow k-timeline-arrow-left"
636
637
  rounded="full"
637
638
  [title]="previousTitle"
638
639
  (click)="previousClick()"
639
640
  [disabled]="isFirstRange"
640
- [attr.aria-hidden]="true"
641
641
  tabindex="-1"
642
642
  type="button"
643
643
  ></button>
644
644
  <button
645
645
  kendoButton
646
646
  [svgIcon]="svgRightIcon"
647
+ icon="caret-alt-right"
647
648
  class="k-timeline-arrow k-timeline-arrow-right"
648
649
  rounded="full"
649
650
  [title]="nextTitle"
650
651
  (click)="nextClick()"
651
652
  [disabled]="isLastRange"
652
- [attr.aria-hidden]="true"
653
653
  tabindex="-1"
654
654
  type="button"
655
655
  ></button>
@@ -723,10 +723,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
723
723
  </kendo-timeline-card>
724
724
  </li>
725
725
  </ul>
726
+ <kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
726
727
  </div>
727
728
  `,
728
729
  standalone: true,
729
- imports: [ButtonComponent, NgFor, NgIf, NgStyle, TimelineCardComponent, DatePipe]
730
+ imports: [ButtonComponent, NgFor, NgIf, NgStyle, TimelineCardComponent, DatePipe, ResizeSensorComponent]
730
731
  }]
731
732
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1.TimelineService }, { type: i2.LocalizationService }]; }, propDecorators: { events: [{
732
733
  type: Input
@@ -11,7 +11,7 @@ import { Keys, shouldShowValidationUI, WatermarkOverlayComponent, isDocumentAvai
11
11
  import { validatePackage } from '@progress/kendo-licensing';
12
12
  import * as i1$2 from '@angular/animations';
13
13
  import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
14
- import { Subject, BehaviorSubject, Subscription, of, fromEvent } from 'rxjs';
14
+ import { Subject, BehaviorSubject, Subscription, of } from 'rxjs';
15
15
  import { chevronUpIcon, chevronDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, checkCircleIcon, exclamationCircleIcon, chevronRightIcon } from '@progress/kendo-svg-icons';
16
16
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
17
17
  import { NgIf, NgTemplateOutlet, NgFor, NgStyle, NgClass } from '@angular/common';
@@ -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: 1730712008,
32
- version: '17.0.0-develop.34',
31
+ publishDate: 1730714497,
32
+ version: '17.0.0-develop.35',
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
 
@@ -11509,7 +11509,6 @@ class TimelineHorizontalComponent {
11509
11509
  this.localization = localization;
11510
11510
  }
11511
11511
  ngOnInit() {
11512
- this._zone.runOutsideAngular(() => isDocumentAvailable() && this.subscriptions.add(fromEvent(window, 'resize').subscribe(this.handleWindowResize.bind(this))));
11513
11512
  this.l10nChange();
11514
11513
  this.subscriptions.add(this.localization.changes.subscribe(this.l10nChange.bind(this)));
11515
11514
  if (this.events.length > 0) {
@@ -11571,7 +11570,7 @@ class TimelineHorizontalComponent {
11571
11570
  ngOnDestroy() {
11572
11571
  this.subscriptions.unsubscribe();
11573
11572
  }
11574
- handleWindowResize() {
11573
+ onResize() {
11575
11574
  if (!isDocumentAvailable()) {
11576
11575
  return;
11577
11576
  }
@@ -11903,24 +11902,24 @@ class TimelineHorizontalComponent {
11903
11902
  <button
11904
11903
  kendoButton
11905
11904
  [svgIcon]="svgLeftIcon"
11905
+ icon="caret-alt-left"
11906
11906
  class="k-timeline-arrow k-timeline-arrow-left"
11907
11907
  rounded="full"
11908
11908
  [title]="previousTitle"
11909
11909
  (click)="previousClick()"
11910
11910
  [disabled]="isFirstRange"
11911
- [attr.aria-hidden]="true"
11912
11911
  tabindex="-1"
11913
11912
  type="button"
11914
11913
  ></button>
11915
11914
  <button
11916
11915
  kendoButton
11917
11916
  [svgIcon]="svgRightIcon"
11917
+ icon="caret-alt-right"
11918
11918
  class="k-timeline-arrow k-timeline-arrow-right"
11919
11919
  rounded="full"
11920
11920
  [title]="nextTitle"
11921
11921
  (click)="nextClick()"
11922
11922
  [disabled]="isLastRange"
11923
- [attr.aria-hidden]="true"
11924
11923
  tabindex="-1"
11925
11924
  type="button"
11926
11925
  ></button>
@@ -11994,8 +11993,9 @@ class TimelineHorizontalComponent {
11994
11993
  </kendo-timeline-card>
11995
11994
  </li>
11996
11995
  </ul>
11996
+ <kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
11997
11997
  </div>
11998
- `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TimelineCardComponent, selector: "kendo-timeline-card", inputs: ["event", "expanded", "collapsible", "reversed", "orientation", "navigable", "tabIndex", "animationDuration", "index", "eventWidth", "eventHeight", "headerTemplate", "bodyTemplate", "actionsTemplate", "calloutStyle"], exportAs: ["kendoTimelineCard"] }, { kind: "pipe", type: DatePipe, name: "kendoDate" }], animations: [
11998
+ `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TimelineCardComponent, selector: "kendo-timeline-card", inputs: ["event", "expanded", "collapsible", "reversed", "orientation", "navigable", "tabIndex", "animationDuration", "index", "eventWidth", "eventHeight", "headerTemplate", "bodyTemplate", "actionsTemplate", "calloutStyle"], exportAs: ["kendoTimelineCard"] }, { kind: "pipe", type: DatePipe, name: "kendoDate" }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], animations: [
11999
11999
  trigger('trackSlide', [
12000
12000
  state('left', style({
12001
12001
  transform: `translateX({{transformValue}}%)`,
@@ -12049,24 +12049,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
12049
12049
  <button
12050
12050
  kendoButton
12051
12051
  [svgIcon]="svgLeftIcon"
12052
+ icon="caret-alt-left"
12052
12053
  class="k-timeline-arrow k-timeline-arrow-left"
12053
12054
  rounded="full"
12054
12055
  [title]="previousTitle"
12055
12056
  (click)="previousClick()"
12056
12057
  [disabled]="isFirstRange"
12057
- [attr.aria-hidden]="true"
12058
12058
  tabindex="-1"
12059
12059
  type="button"
12060
12060
  ></button>
12061
12061
  <button
12062
12062
  kendoButton
12063
12063
  [svgIcon]="svgRightIcon"
12064
+ icon="caret-alt-right"
12064
12065
  class="k-timeline-arrow k-timeline-arrow-right"
12065
12066
  rounded="full"
12066
12067
  [title]="nextTitle"
12067
12068
  (click)="nextClick()"
12068
12069
  [disabled]="isLastRange"
12069
- [attr.aria-hidden]="true"
12070
12070
  tabindex="-1"
12071
12071
  type="button"
12072
12072
  ></button>
@@ -12140,10 +12140,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
12140
12140
  </kendo-timeline-card>
12141
12141
  </li>
12142
12142
  </ul>
12143
+ <kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
12143
12144
  </div>
12144
12145
  `,
12145
12146
  standalone: true,
12146
- imports: [ButtonComponent, NgFor, NgIf, NgStyle, TimelineCardComponent, DatePipe]
12147
+ imports: [ButtonComponent, NgFor, NgIf, NgStyle, TimelineCardComponent, DatePipe, ResizeSensorComponent]
12147
12148
  }]
12148
12149
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: TimelineService }, { type: i1.LocalizationService }]; }, propDecorators: { events: [{
12149
12150
  type: Input
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "17.0.0-develop.34",
3
+ "version": "17.0.0-develop.35",
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.34",
43
- "@progress/kendo-angular-l10n": "17.0.0-develop.34",
44
- "@progress/kendo-angular-progressbar": "17.0.0-develop.34",
45
- "@progress/kendo-angular-icons": "17.0.0-develop.34",
46
- "@progress/kendo-angular-buttons": "17.0.0-develop.34",
47
- "@progress/kendo-angular-intl": "17.0.0-develop.34",
42
+ "@progress/kendo-angular-common": "17.0.0-develop.35",
43
+ "@progress/kendo-angular-l10n": "17.0.0-develop.35",
44
+ "@progress/kendo-angular-progressbar": "17.0.0-develop.35",
45
+ "@progress/kendo-angular-icons": "17.0.0-develop.35",
46
+ "@progress/kendo-angular-buttons": "17.0.0-develop.35",
47
+ "@progress/kendo-angular-intl": "17.0.0-develop.35",
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.34",
52
+ "@progress/kendo-angular-schematics": "17.0.0-develop.35",
53
53
  "@progress/kendo-draggable": "^3.0.2"
54
54
  },
55
55
  "schematics": "./schematics/collection.json",
@@ -66,7 +66,7 @@ export declare class TimelineHorizontalComponent implements OnInit, AfterViewIni
66
66
  ngAfterViewInit(): void;
67
67
  ngOnChanges(changes: SimpleChanges): void;
68
68
  ngOnDestroy(): void;
69
- handleWindowResize(): void;
69
+ onResize(): void;
70
70
  onTransitionEnd(): void;
71
71
  onTrackTransitionEnd(): void;
72
72
  onSlideDone(): void;