@progress/kendo-angular-layout 21.1.1-develop.2 → 21.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.
- package/codemods/utils.js +805 -394
- package/codemods/v19/tabstrip-mousescrollspeed.js +11 -15
- package/esm2022/avatar/avatar.component.mjs +63 -59
- package/esm2022/card/card-actions.component.mjs +51 -41
- package/esm2022/drawer/drawer-container.component.mjs +10 -8
- package/esm2022/drawer/drawer.component.mjs +69 -55
- package/esm2022/drawer/item.component.mjs +79 -69
- package/esm2022/drawer/list.component.mjs +30 -27
- package/esm2022/expansionpanel/expansionpanel.component.mjs +75 -65
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/panelbar/panelbar-item.component.mjs +169 -135
- package/esm2022/panelbar/panelbar.component.mjs +58 -47
- package/esm2022/splitter/splitter-bar.component.mjs +34 -27
- package/esm2022/splitter/splitter-pane.component.mjs +16 -10
- package/esm2022/splitter/splitter.component.mjs +29 -31
- package/esm2022/stepper/list.component.mjs +33 -33
- package/esm2022/stepper/step.component.mjs +141 -111
- package/esm2022/stepper/stepper.component.mjs +59 -55
- package/esm2022/stepper/stepper.service.mjs +2 -2
- package/esm2022/tabstrip/rendering/tab.component.mjs +49 -39
- package/esm2022/tabstrip/tabstrip.component.mjs +251 -233
- package/esm2022/tabstrip/tabstrip.service.mjs +2 -2
- package/esm2022/tabstrip/util.mjs +1 -1
- package/esm2022/tilelayout/keyboard-navigation.service.mjs +2 -2
- package/esm2022/tilelayout/tilelayout-item.component.mjs +28 -23
- package/esm2022/tilelayout/tilelayout.component.mjs +24 -21
- package/esm2022/timeline/models/events-order.mjs +5 -0
- package/esm2022/timeline/timeline-card.component.mjs +185 -151
- package/esm2022/timeline/timeline-horizontal.component.mjs +200 -192
- package/esm2022/timeline/timeline-vertical.component.mjs +79 -67
- package/esm2022/timeline/timeline.component.mjs +61 -34
- package/fesm2022/progress-kendo-angular-layout.mjs +1781 -1514
- package/index.d.ts +1 -0
- package/package.json +10 -11
- package/timeline/models/events-order.d.ts +10 -0
- package/timeline/timeline.component.d.ts +12 -1
- package/codemods/template-transformer/index.js +0 -93
|
@@ -6,7 +6,7 @@ import { ChangeDetectorRef, Component, ElementRef, Input, NgZone, QueryList, Ren
|
|
|
6
6
|
import { caretAltLeftIcon, caretAltRightIcon } from '@progress/kendo-svg-icons';
|
|
7
7
|
import { Subscription } from 'rxjs';
|
|
8
8
|
import { TimelineCardComponent } from './timeline-card.component';
|
|
9
|
-
import { Keys, ResizeSensorComponent, guid, isChanged, isDocumentAvailable, isPresent,
|
|
9
|
+
import { Keys, ResizeSensorComponent, guid, isChanged, isDocumentAvailable, isPresent, normalizeKeys } 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';
|
|
@@ -14,7 +14,7 @@ import { TimelineCardBodyTemplateDirective } from './templates/timeline-card-bod
|
|
|
14
14
|
import { TimelineCardHeaderTemplateDirective } from './templates/timeline-card-header.directive';
|
|
15
15
|
import { TimelineCardActionsTemplateDirective } from './templates/timeline-card-actions.directive';
|
|
16
16
|
import { DatePipe } from '@progress/kendo-angular-intl';
|
|
17
|
-
import {
|
|
17
|
+
import { NgStyle } from '@angular/common';
|
|
18
18
|
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
19
19
|
import * as i0 from "@angular/core";
|
|
20
20
|
import * as i1 from "./timeline.service";
|
|
@@ -140,13 +140,7 @@ export class TimelineHorizontalComponent {
|
|
|
140
140
|
}
|
|
141
141
|
this.trackItems.push(event);
|
|
142
142
|
});
|
|
143
|
-
this.
|
|
144
|
-
.slice(this.firstCircleInView, this.firstCircleInView + this.visibleTabsCount)
|
|
145
|
-
.filter(event => !event.isFlag);
|
|
146
|
-
this.selectedEvent = this.events[0];
|
|
147
|
-
this.cdr.detectChanges();
|
|
148
|
-
this.calloutStyle = this.calloutOffset;
|
|
149
|
-
this.focusTrackItem(0);
|
|
143
|
+
this.navigateToFirstInterval();
|
|
150
144
|
}
|
|
151
145
|
}
|
|
152
146
|
}
|
|
@@ -306,7 +300,7 @@ export class TimelineHorizontalComponent {
|
|
|
306
300
|
if (!this.navigable) {
|
|
307
301
|
return;
|
|
308
302
|
}
|
|
309
|
-
const code =
|
|
303
|
+
const code = normalizeKeys(event);
|
|
310
304
|
event.preventDefault();
|
|
311
305
|
if (code === Keys.Home) {
|
|
312
306
|
this.onHomeKey();
|
|
@@ -481,105 +475,112 @@ export class TimelineHorizontalComponent {
|
|
|
481
475
|
this.cdr.markForCheck();
|
|
482
476
|
}
|
|
483
477
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineHorizontalComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.TimelineService }, { token: i2.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
484
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
478
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: TimelineHorizontalComponent, isStandalone: true, selector: "kendo-timeline-horizontal", inputs: { events: "events", alterMode: "alterMode", collapsibleEvents: "collapsibleEvents", navigable: "navigable", showDateLabels: "showDateLabels", animationDuration: "animationDuration", eventHeight: "eventHeight", dateFormat: "dateFormat", headerTemplate: "headerTemplate", bodyTemplate: "bodyTemplate", actionsTemplate: "actionsTemplate" }, providers: [], viewQueries: [{ propertyName: "trackElementRef", first: true, predicate: ["track"], descendants: true }, { propertyName: "scrollableTrackElementRef", first: true, predicate: ["scrollableTrack"], descendants: true }, { propertyName: "cardElementRefs", predicate: ["card"], descendants: true, read: ElementRef }, { propertyName: "circleElementRefs", predicate: ["trackCircle"], descendants: true }, { propertyName: "flagElementRefs", predicate: ["trackFlag"], descendants: true }, { propertyName: "cardComponents", predicate: TimelineCardComponent, descendants: true }], exportAs: ["kendoTimelineHorizontal"], usesOnChanges: true, ngImport: i0, template: `
|
|
485
479
|
<div class="k-timeline-track-wrap" #track>
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
</
|
|
546
|
-
|
|
547
|
-
|
|
480
|
+
<button
|
|
481
|
+
kendoButton
|
|
482
|
+
[svgIcon]="svgLeftIcon"
|
|
483
|
+
icon="caret-alt-left"
|
|
484
|
+
class="k-timeline-arrow k-timeline-arrow-left"
|
|
485
|
+
rounded="full"
|
|
486
|
+
[title]="previousTitle"
|
|
487
|
+
(click)="previousClick()"
|
|
488
|
+
[disabled]="isFirstRange"
|
|
489
|
+
tabindex="-1"
|
|
490
|
+
type="button"
|
|
491
|
+
></button>
|
|
492
|
+
<button
|
|
493
|
+
kendoButton
|
|
494
|
+
[svgIcon]="svgRightIcon"
|
|
495
|
+
icon="caret-alt-right"
|
|
496
|
+
class="k-timeline-arrow k-timeline-arrow-right"
|
|
497
|
+
rounded="full"
|
|
498
|
+
[title]="nextTitle"
|
|
499
|
+
(click)="nextClick()"
|
|
500
|
+
[disabled]="isLastRange"
|
|
501
|
+
tabindex="-1"
|
|
502
|
+
type="button"
|
|
503
|
+
></button>
|
|
504
|
+
<div class="k-timeline-track">
|
|
505
|
+
<ul class="k-timeline-scrollable-wrap"
|
|
506
|
+
#scrollableTrack
|
|
507
|
+
[attr.role]="'tablist'"
|
|
508
|
+
[attr.tabindex]="'0'"
|
|
509
|
+
[@trackSlide]="{value: animationState, params: {transformValue: this.translateValue}}"
|
|
510
|
+
(@trackSlide.done)="onSlideDone()"
|
|
511
|
+
(transitionend)="onTrackTransitionEnd()"
|
|
512
|
+
>
|
|
513
|
+
@for (event of trackItems; track event; let index = $index) {
|
|
514
|
+
@if (event.isFlag) {
|
|
515
|
+
<li
|
|
516
|
+
#trackFlag
|
|
517
|
+
class="k-timeline-flag-wrap k-timeline-track-item"
|
|
518
|
+
[attr.role]="'none'"
|
|
519
|
+
[attr.aria-hidden]="true"
|
|
520
|
+
[ngStyle]="tabStyle()"
|
|
521
|
+
>
|
|
522
|
+
<span class="k-timeline-flag">{{ event.isFlag }}</span>
|
|
523
|
+
</li>
|
|
524
|
+
}
|
|
525
|
+
@if (!event.isFlag) {
|
|
526
|
+
<li
|
|
527
|
+
#trackCircle
|
|
528
|
+
class="k-timeline-track-item"
|
|
529
|
+
[attr.role]="'tab'"
|
|
530
|
+
(click)="navigateToEvent(index)"
|
|
531
|
+
[ngStyle]="tabStyle()"
|
|
532
|
+
>
|
|
533
|
+
<div class="k-timeline-date-wrap">
|
|
534
|
+
@if (showDateLabels) {
|
|
535
|
+
<span class="k-timeline-date">
|
|
536
|
+
{{ event.date | kendoDate: dateFormat }}
|
|
537
|
+
</span>
|
|
538
|
+
}
|
|
539
|
+
</div>
|
|
540
|
+
<span class="k-timeline-circle"></span>
|
|
541
|
+
</li>
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
</ul>
|
|
545
|
+
</div>
|
|
548
546
|
</div>
|
|
549
547
|
<div class="k-timeline-events-list">
|
|
548
|
+
@if (selectedEvent) {
|
|
550
549
|
<ul
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
<li
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
550
|
+
class="k-timeline-scrollable-wrap"
|
|
551
|
+
[@eventsSlide]="{value: animationState, params: {animationDuration: this.animationDuration || 0}}"
|
|
552
|
+
(@eventsSlide.done)="onSlideDone()"
|
|
553
|
+
[ngStyle]="{'transform-origin': 'left top'}"
|
|
554
|
+
>
|
|
555
|
+
@for (event of eventsInInterval; track event; let index = $index) {
|
|
556
|
+
<li
|
|
557
|
+
#card
|
|
558
|
+
class="k-timeline-event"
|
|
559
|
+
(transitionend)="onTransitionEnd()"
|
|
560
|
+
>
|
|
561
|
+
<kendo-timeline-card
|
|
562
|
+
[event]="selectedCardIndex === index ? selectedEvent : null"
|
|
563
|
+
[expanded]="true"
|
|
564
|
+
[collapsible]="collapsibleEvents"
|
|
565
|
+
[calloutStyle]="selectedCardIndex === index ? calloutStyle : {}"
|
|
566
|
+
[ngStyle]="{visibility: selectedCardIndex === index ? 'visible' : 'hidden' }"
|
|
567
|
+
[tabIndex]="selectedCardIndex === index ? '0' : '-1'"
|
|
568
|
+
[navigable]="navigable"
|
|
569
|
+
[index]="selectedEventIndex"
|
|
570
|
+
[headerTemplate]="headerTemplate"
|
|
571
|
+
[bodyTemplate]="bodyTemplate"
|
|
572
|
+
[actionsTemplate]="actionsTemplate"
|
|
573
|
+
[eventHeight]="eventHeight"
|
|
574
|
+
orientation="horizontal"
|
|
576
575
|
>
|
|
577
|
-
|
|
576
|
+
</kendo-timeline-card>
|
|
578
577
|
</li>
|
|
578
|
+
}
|
|
579
579
|
</ul>
|
|
580
|
-
|
|
580
|
+
}
|
|
581
|
+
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
|
|
581
582
|
</div>
|
|
582
|
-
|
|
583
|
+
`, 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: 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: [
|
|
583
584
|
trigger('trackSlide', [
|
|
584
585
|
state('left', style({
|
|
585
586
|
transform: `translateX({{transformValue}}%)`,
|
|
@@ -630,105 +631,112 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
630
631
|
selector: 'kendo-timeline-horizontal',
|
|
631
632
|
template: `
|
|
632
633
|
<div class="k-timeline-track-wrap" #track>
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
</
|
|
693
|
-
|
|
694
|
-
|
|
634
|
+
<button
|
|
635
|
+
kendoButton
|
|
636
|
+
[svgIcon]="svgLeftIcon"
|
|
637
|
+
icon="caret-alt-left"
|
|
638
|
+
class="k-timeline-arrow k-timeline-arrow-left"
|
|
639
|
+
rounded="full"
|
|
640
|
+
[title]="previousTitle"
|
|
641
|
+
(click)="previousClick()"
|
|
642
|
+
[disabled]="isFirstRange"
|
|
643
|
+
tabindex="-1"
|
|
644
|
+
type="button"
|
|
645
|
+
></button>
|
|
646
|
+
<button
|
|
647
|
+
kendoButton
|
|
648
|
+
[svgIcon]="svgRightIcon"
|
|
649
|
+
icon="caret-alt-right"
|
|
650
|
+
class="k-timeline-arrow k-timeline-arrow-right"
|
|
651
|
+
rounded="full"
|
|
652
|
+
[title]="nextTitle"
|
|
653
|
+
(click)="nextClick()"
|
|
654
|
+
[disabled]="isLastRange"
|
|
655
|
+
tabindex="-1"
|
|
656
|
+
type="button"
|
|
657
|
+
></button>
|
|
658
|
+
<div class="k-timeline-track">
|
|
659
|
+
<ul class="k-timeline-scrollable-wrap"
|
|
660
|
+
#scrollableTrack
|
|
661
|
+
[attr.role]="'tablist'"
|
|
662
|
+
[attr.tabindex]="'0'"
|
|
663
|
+
[@trackSlide]="{value: animationState, params: {transformValue: this.translateValue}}"
|
|
664
|
+
(@trackSlide.done)="onSlideDone()"
|
|
665
|
+
(transitionend)="onTrackTransitionEnd()"
|
|
666
|
+
>
|
|
667
|
+
@for (event of trackItems; track event; let index = $index) {
|
|
668
|
+
@if (event.isFlag) {
|
|
669
|
+
<li
|
|
670
|
+
#trackFlag
|
|
671
|
+
class="k-timeline-flag-wrap k-timeline-track-item"
|
|
672
|
+
[attr.role]="'none'"
|
|
673
|
+
[attr.aria-hidden]="true"
|
|
674
|
+
[ngStyle]="tabStyle()"
|
|
675
|
+
>
|
|
676
|
+
<span class="k-timeline-flag">{{ event.isFlag }}</span>
|
|
677
|
+
</li>
|
|
678
|
+
}
|
|
679
|
+
@if (!event.isFlag) {
|
|
680
|
+
<li
|
|
681
|
+
#trackCircle
|
|
682
|
+
class="k-timeline-track-item"
|
|
683
|
+
[attr.role]="'tab'"
|
|
684
|
+
(click)="navigateToEvent(index)"
|
|
685
|
+
[ngStyle]="tabStyle()"
|
|
686
|
+
>
|
|
687
|
+
<div class="k-timeline-date-wrap">
|
|
688
|
+
@if (showDateLabels) {
|
|
689
|
+
<span class="k-timeline-date">
|
|
690
|
+
{{ event.date | kendoDate: dateFormat }}
|
|
691
|
+
</span>
|
|
692
|
+
}
|
|
693
|
+
</div>
|
|
694
|
+
<span class="k-timeline-circle"></span>
|
|
695
|
+
</li>
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
</ul>
|
|
699
|
+
</div>
|
|
695
700
|
</div>
|
|
696
701
|
<div class="k-timeline-events-list">
|
|
702
|
+
@if (selectedEvent) {
|
|
697
703
|
<ul
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
<li
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
704
|
+
class="k-timeline-scrollable-wrap"
|
|
705
|
+
[@eventsSlide]="{value: animationState, params: {animationDuration: this.animationDuration || 0}}"
|
|
706
|
+
(@eventsSlide.done)="onSlideDone()"
|
|
707
|
+
[ngStyle]="{'transform-origin': 'left top'}"
|
|
708
|
+
>
|
|
709
|
+
@for (event of eventsInInterval; track event; let index = $index) {
|
|
710
|
+
<li
|
|
711
|
+
#card
|
|
712
|
+
class="k-timeline-event"
|
|
713
|
+
(transitionend)="onTransitionEnd()"
|
|
714
|
+
>
|
|
715
|
+
<kendo-timeline-card
|
|
716
|
+
[event]="selectedCardIndex === index ? selectedEvent : null"
|
|
717
|
+
[expanded]="true"
|
|
718
|
+
[collapsible]="collapsibleEvents"
|
|
719
|
+
[calloutStyle]="selectedCardIndex === index ? calloutStyle : {}"
|
|
720
|
+
[ngStyle]="{visibility: selectedCardIndex === index ? 'visible' : 'hidden' }"
|
|
721
|
+
[tabIndex]="selectedCardIndex === index ? '0' : '-1'"
|
|
722
|
+
[navigable]="navigable"
|
|
723
|
+
[index]="selectedEventIndex"
|
|
724
|
+
[headerTemplate]="headerTemplate"
|
|
725
|
+
[bodyTemplate]="bodyTemplate"
|
|
726
|
+
[actionsTemplate]="actionsTemplate"
|
|
727
|
+
[eventHeight]="eventHeight"
|
|
728
|
+
orientation="horizontal"
|
|
723
729
|
>
|
|
724
|
-
|
|
730
|
+
</kendo-timeline-card>
|
|
725
731
|
</li>
|
|
732
|
+
}
|
|
726
733
|
</ul>
|
|
727
|
-
|
|
734
|
+
}
|
|
735
|
+
<kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
|
|
728
736
|
</div>
|
|
729
|
-
|
|
737
|
+
`,
|
|
730
738
|
standalone: true,
|
|
731
|
-
imports: [ButtonComponent,
|
|
739
|
+
imports: [ButtonComponent, NgStyle, TimelineCardComponent, DatePipe, ResizeSensorComponent]
|
|
732
740
|
}]
|
|
733
741
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.Renderer2 }, { type: i1.TimelineService }, { type: i2.LocalizationService }], propDecorators: { events: [{
|
|
734
742
|
type: Input
|