@progress/kendo-angular-layout 25.1.0-develop.1 → 25.1.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/index.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
- import { TemplateRef, OnInit, AfterContentChecked, AfterViewChecked, OnDestroy, ElementRef, QueryList, Renderer2, OnChanges, EventEmitter, SimpleChange, ChangeDetectorRef, NgZone, SimpleChanges, AfterContentInit, AfterViewInit } from '@angular/core';
6
+ import { TemplateRef, OnInit, AfterContentChecked, AfterViewChecked, OnDestroy, ElementRef, QueryList, Renderer2, EventEmitter, NgZone, ChangeDetectorRef, AfterContentInit, AfterViewInit, Injector, SimpleChanges, SimpleChange, OnChanges } from '@angular/core';
7
7
  import { LocalizationService, ComponentMessages } from '@progress/kendo-angular-l10n';
8
8
  import { LicenseMessage } from '@progress/kendo-licensing';
9
9
  import { Observable, Subject, Subscription, BehaviorSubject } from 'rxjs';
@@ -265,25 +265,29 @@ declare class PanelBarItemComponent implements OnInit, AfterContentChecked, Afte
265
265
  /**
266
266
  * Sets the title of the PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#titles)).
267
267
  */
268
- title: string;
268
+ set title(value: string);
269
+ get title(): string;
269
270
  /**
270
271
  * Allows the component to set the `"id"` property to each item.
271
272
  * Used to set the `id` attributes of the nested elements and to enable the WAI-ARIA support.
272
273
  */
273
- id: string;
274
+ set id(value: string);
275
+ get id(): string;
274
276
  /**
275
277
  * Defines the icon that renders next to the title ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#title-icons)).
276
278
  *
277
279
  * @default ''
278
280
  */
279
- icon: string;
281
+ set icon(value: string);
282
+ get icon(): string;
280
283
  /**
281
284
  * Defines the icon that renders next to the title by using a custom CSS class
282
285
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#title-icons)).
283
286
  *
284
287
  * @default ''
285
288
  */
286
- iconClass: string;
289
+ set iconClass(value: string);
290
+ get iconClass(): string;
287
291
  /**
288
292
  * Defines an SVG icon to render.
289
293
  * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
@@ -296,13 +300,15 @@ declare class PanelBarItemComponent implements OnInit, AfterContentChecked, Afte
296
300
  *
297
301
  * @default ''
298
302
  */
299
- imageUrl: string;
303
+ set imageUrl(value: string);
304
+ get imageUrl(): string;
300
305
  /**
301
306
  * When set to `true`, disables a PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#disabled-state)).
302
307
  *
303
308
  * @default false
304
309
  */
305
- disabled: boolean;
310
+ set disabled(value: boolean);
311
+ get disabled(): boolean;
306
312
  /**
307
313
  * When set to `true`, expands the PanelBar item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items#expanded-state)).
308
314
  */
@@ -313,31 +319,42 @@ declare class PanelBarItemComponent implements OnInit, AfterContentChecked, Afte
313
319
  *
314
320
  * @default false
315
321
  */
316
- selected: boolean;
322
+ set selected(value: boolean);
323
+ get selected(): boolean;
317
324
  /**
318
325
  * Sets the content of the PanelBar item.
319
326
  * It is used when the [`items`](https://www.telerik.com/kendo-angular-ui/components/layout/api/panelbarcomponent#items) property of the PanelBar is set.
320
327
  */
321
- content: any;
328
+ set content(value: any);
329
+ get content(): any;
322
330
  /**
323
331
  * @hidden
324
332
  */
325
- items: Array<PanelBarItemModel>;
333
+ set items(value: Array<PanelBarItemModel>);
334
+ get items(): Array<PanelBarItemModel>;
326
335
  /**
327
336
  * @hidden
328
337
  */
329
- template: TemplateRef<any>;
338
+ set template(value: TemplateRef<any>);
339
+ get template(): TemplateRef<any>;
330
340
  header: ElementRef;
331
341
  contentWrapper: ElementRef;
332
- contentHeight: string;
333
- contentOverflow: string;
334
- keepContent: boolean | 'loadOnDemand';
335
- childrenItems: Array<PanelBarItemComponent>;
336
- hasChildItems: boolean;
337
- hasItems: boolean;
338
- hasContent: boolean;
339
- state: string;
342
+ get contentHeight(): string;
343
+ set contentHeight(value: string);
344
+ get contentOverflow(): string;
345
+ set contentOverflow(value: string);
346
+ get keepContent(): boolean | 'loadOnDemand';
347
+ set keepContent(value: boolean | 'loadOnDemand');
348
+ get state(): string;
349
+ set state(value: string);
340
350
  get animate(): boolean;
351
+ childrenItems: Array<PanelBarItemComponent>;
352
+ get hasChildItems(): boolean;
353
+ set hasChildItems(value: boolean);
354
+ get hasItems(): boolean;
355
+ set hasItems(value: boolean);
356
+ get hasContent(): boolean;
357
+ set hasContent(value: boolean);
341
358
  role: string;
342
359
  titleAttribute: string;
343
360
  kItemClass: boolean;
@@ -355,12 +372,33 @@ declare class PanelBarItemComponent implements OnInit, AfterContentChecked, Afte
355
372
  contentItems: QueryList<PanelBarItemComponent>;
356
373
  contentTemplate: QueryList<PanelBarContentDirective>;
357
374
  titleTemplates: QueryList<PanelBarItemTitleDirective>;
358
- focused: boolean;
359
- wrapperFocused: boolean;
375
+ get focused(): boolean;
376
+ set focused(value: boolean);
377
+ get wrapperFocused(): boolean;
378
+ set wrapperFocused(value: boolean);
360
379
  protected subscriptions: Subscription;
380
+ private _title;
381
+ private _id;
382
+ private _icon;
383
+ private _iconClass;
384
+ private _imageUrl;
385
+ private _disabled;
386
+ private _selected;
387
+ private _content;
388
+ private _items;
389
+ private _template;
361
390
  private _expanded;
362
- private level;
363
391
  private _svgIcon;
392
+ private _state;
393
+ private _focused;
394
+ private _wrapperFocused;
395
+ private _keepContent;
396
+ private _contentHeight;
397
+ private _contentOverflow;
398
+ private _hasChildItems;
399
+ private _hasItems;
400
+ private _hasContent;
401
+ private level;
364
402
  constructor(parent: PanelBarItemComponent, eventService: PanelBarService, element: ElementRef, renderer: Renderer2);
365
403
  /**
366
404
  * @hidden
@@ -467,33 +505,37 @@ declare class PanelBarItemTemplateDirective {
467
505
  * @remarks
468
506
  * Supported children components are: {@link PanelBarItemComponent}.
469
507
  */
470
- declare class PanelBarComponent implements AfterViewChecked, OnChanges, OnInit, OnDestroy {
508
+ declare class PanelBarComponent implements AfterViewChecked, OnInit, OnDestroy {
471
509
  private localization;
472
510
  /**
473
511
  * Sets the expand mode of the PanelBar through the `PanelBarExpandMode` enum ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/expand-modes)).
474
512
  *
475
513
  * @default 'multiple
476
514
  */
477
- expandMode: PanelBarExpandMode;
515
+ set expandMode(value: PanelBarExpandMode);
516
+ get expandMode(): PanelBarExpandMode;
478
517
  /**
479
518
  * Allows the PanelBar to modify the selected state of the items.
480
519
  *
481
520
  * @default true
482
521
  */
483
- selectable: boolean;
522
+ set selectable(value: boolean);
523
+ get selectable(): boolean;
484
524
  /**
485
525
  * Sets the animate state of the PanelBar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/animations)).
486
526
  *
487
527
  * @default true
488
528
  */
489
- animate: boolean;
529
+ set animate(value: boolean);
530
+ get animate(): boolean;
490
531
  /**
491
532
  * Sets the height of the component when the `"full"` expand mode is used.
492
533
  * This option is ignored when the `"multiple"` or `"single"` expand modes are used.
493
534
  *
494
535
  * @default '400px'
495
536
  */
496
- height: any;
537
+ set height(value: any);
538
+ get height(): any;
497
539
  /**
498
540
  * Controls how the PanelBar renders item content.
499
541
  *
@@ -507,8 +549,8 @@ declare class PanelBarComponent implements AfterViewChecked, OnChanges, OnInit,
507
549
  *
508
550
  * @default false
509
551
  */
510
- get keepItemContent(): boolean | 'loadOnDemand';
511
552
  set keepItemContent(keepItemContent: boolean | 'loadOnDemand');
553
+ get keepItemContent(): boolean | 'loadOnDemand';
512
554
  /**
513
555
  * Sets the items of the PanelBar as an array of `PanelBarItemModel` instances
514
556
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/panelbar/items)).
@@ -567,6 +609,10 @@ declare class PanelBarComponent implements AfterViewChecked, OnChanges, OnInit,
567
609
  private childrenItems;
568
610
  private isViewInit;
569
611
  private focused;
612
+ private _expandMode;
613
+ private _selectable;
614
+ private _animate;
615
+ private _height;
570
616
  private _items;
571
617
  private _keepItemContent;
572
618
  private elementRef;
@@ -582,9 +628,6 @@ declare class PanelBarComponent implements AfterViewChecked, OnChanges, OnInit,
582
628
  ngOnDestroy(): void;
583
629
  ngOnInit(): void;
584
630
  ngAfterViewChecked(): void;
585
- ngOnChanges(changes: {
586
- [propertyName: string]: SimpleChange;
587
- }): void;
588
631
  get templateRef(): TemplateRef<any>;
589
632
  /**
590
633
  * @hidden
@@ -641,17 +684,18 @@ declare class SplitterBarComponent implements OnInit, OnDestroy {
641
684
  private splitterService;
642
685
  element: ElementRef<HTMLElement>;
643
686
  private renderer;
644
- private cdr;
645
687
  ariaRole: string;
646
688
  ariaLabel: string;
647
- focused: boolean;
689
+ get focused(): boolean;
648
690
  get hostOrientation(): string;
649
691
  ariaKeyShortcuts: string;
650
692
  get tabIndex(): number;
651
693
  get hostClasses(): string;
652
694
  get order(): number;
653
- orientation: Orientation;
654
- index: number;
695
+ set orientation(value: Orientation);
696
+ get orientation(): Orientation;
697
+ set index(value: number);
698
+ get index(): number;
655
699
  set htmlAttributes(attributes: {
656
700
  [key: string]: string;
657
701
  });
@@ -660,10 +704,13 @@ declare class SplitterBarComponent implements OnInit, OnDestroy {
660
704
  };
661
705
  private subscriptions;
662
706
  private _htmlAttributes;
707
+ private _orientation;
708
+ private _index;
709
+ private _focused;
663
710
  private parsedAttributes;
664
711
  private get defaultAttributes();
665
712
  private get mutableAttributes();
666
- constructor(draggable: DraggableDirective, localization: LocalizationService, splitterService: SplitterService, element: ElementRef<HTMLElement>, renderer: Renderer2, cdr: ChangeDetectorRef);
713
+ constructor(draggable: DraggableDirective, localization: LocalizationService, splitterService: SplitterService, element: ElementRef<HTMLElement>, renderer: Renderer2);
667
714
  ngOnInit(): void;
668
715
  ngOnDestroy(): void;
669
716
  togglePrevious(): void;
@@ -679,7 +726,7 @@ declare class SplitterBarComponent implements OnInit, OnDestroy {
679
726
  private onKeyDown;
680
727
  private tryToggleNearest;
681
728
  private setHtmlAttributes;
682
- static ɵfac: i0.ɵɵFactoryDeclaration<SplitterBarComponent, [{ host: true; }, null, null, null, null, null]>;
729
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitterBarComponent, [{ host: true; }, null, null, null, null]>;
683
730
  static ɵcmp: i0.ɵɵComponentDeclaration<SplitterBarComponent, "kendo-splitter-bar", never, { "orientation": { "alias": "orientation"; "required": false; }; "index": { "alias": "index"; "required": false; }; "htmlAttributes": { "alias": "htmlAttributes"; "required": false; }; }, {}, never, never, true, never>;
684
731
  }
685
732
 
@@ -789,35 +836,41 @@ declare class SplitterPaneComponent implements AfterViewChecked {
789
836
  * Defines the CSS classes that are rendered on the splitter bar.
790
837
  * Supports the same values as [`ngClass`](link:site.data.urls.angular['ngclassapi']).
791
838
  */
792
- splitterBarClass: string | Array<string> | object;
839
+ set splitterBarClass(value: string | Array<string> | object);
840
+ get splitterBarClass(): string | Array<string> | object;
793
841
  /**
794
842
  * Defines the minimum possible size of the pane.
795
843
  * Accepts values in pixels and percentages.
796
844
  */
797
- min: string;
845
+ set min(value: string);
846
+ get min(): string;
798
847
  /**
799
848
  * Defines the maximum possible size of the pane.
800
849
  * Accepts values in pixels and percentages.
801
850
  */
802
- max: string;
851
+ set max(value: string);
852
+ get max(): string;
803
853
  /**
804
854
  * Determines if you can resize the pane and provide space for other panes.
805
855
  *
806
856
  * @default true
807
857
  */
808
- resizable: boolean;
858
+ set resizable(value: boolean);
859
+ get resizable(): boolean;
809
860
  /**
810
861
  * Determines if you can hide the pane and provide space for other panes.
811
862
  *
812
863
  * @default false
813
864
  */
814
- collapsible: boolean;
865
+ set collapsible(value: boolean);
866
+ get collapsible(): boolean;
815
867
  /**
816
868
  * Determines if overflowing content is scrollable or hidden.
817
869
  *
818
870
  * @default true
819
871
  */
820
- scrollable: boolean;
872
+ set scrollable(value: boolean);
873
+ get scrollable(): boolean;
821
874
  /**
822
875
  * Determines if the pane is initially collapsed.
823
876
  *
@@ -828,15 +881,18 @@ declare class SplitterPaneComponent implements AfterViewChecked {
828
881
  /**
829
882
  * @hidden
830
883
  */
831
- orientation: Orientation;
884
+ set orientation(value: Orientation);
885
+ get orientation(): Orientation;
832
886
  /**
833
887
  * @hidden
834
888
  */
835
889
  set containsSplitter(value: boolean);
890
+ get containsSplitter(): boolean;
836
891
  /**
837
892
  * @hidden
838
893
  */
839
- overlayContent: boolean;
894
+ set overlayContent(value: boolean);
895
+ get overlayContent(): boolean;
840
896
  /**
841
897
  * Fires when the Splitter pane size changes.
842
898
  * The event data contains the new pane size.
@@ -866,11 +922,19 @@ declare class SplitterPaneComponent implements AfterViewChecked {
866
922
  private _size;
867
923
  private _order;
868
924
  private _splitterBarAttributes;
925
+ private _splitterBarClass;
926
+ private _min;
927
+ private _max;
869
928
  private _collapsed;
870
929
  private _forceExpand;
930
+ private _resizable;
931
+ private _collapsible;
932
+ private _scrollable;
933
+ private _orientation;
934
+ private _containsSplitter;
935
+ private _overlayContent;
871
936
  constructor(element: ElementRef<HTMLElement>, renderer: Renderer2, cdr: ChangeDetectorRef, splitterService: SplitterService);
872
937
  ngAfterViewChecked(): void;
873
- ngOnChanges(changes: SimpleChanges): void;
874
938
  /**
875
939
  * @hidden
876
940
  */
@@ -916,6 +980,7 @@ declare class SplitterComponent implements AfterContentInit {
916
980
  private localization;
917
981
  private renderer;
918
982
  private ngZone;
983
+ private cdr;
919
984
  private enclosingPane?;
920
985
  /**
921
986
  * Defines the orientation of the panes within the Splitter.
@@ -923,12 +988,14 @@ declare class SplitterComponent implements AfterContentInit {
923
988
  *
924
989
  * @default 'horizontal'
925
990
  */
926
- orientation: Orientation;
991
+ set orientation(value: Orientation);
992
+ get orientation(): Orientation;
927
993
  /**
928
994
  * Defines the width or height of the Splitter splitbars in pixels.
929
995
  * The dimension depends on the orientation of the Splitter.
930
996
  */
931
- splitbarWidth: number;
997
+ set splitbarWidth(value: number);
998
+ get splitbarWidth(): number;
932
999
  /**
933
1000
  * Defines the distance in pixels that you move the separator during keyboard navigation.
934
1001
  *
@@ -940,7 +1007,8 @@ declare class SplitterComponent implements AfterContentInit {
940
1007
  * Defines the CSS classes that are rendered on the splitter bars.
941
1008
  * Supports the same values as [`ngClass`](link:site.data.urls.angular['ngclassapi']).
942
1009
  */
943
- splitterBarClass: string | Array<string> | object;
1010
+ set splitterBarClass(value: string | Array<string> | object);
1011
+ get splitterBarClass(): string | Array<string> | object;
944
1012
  /**
945
1013
  * Fires when the layout of the Splitter changes.
946
1014
  * Use this event to trigger layout calculations on components that are positioned inside the panes.
@@ -955,9 +1023,12 @@ declare class SplitterComponent implements AfterContentInit {
955
1023
  * @hidden
956
1024
  */
957
1025
  panes: QueryList<SplitterPaneComponent>;
1026
+ private _orientation;
1027
+ private _splitbarWidth;
1028
+ private _splitterBarClass;
958
1029
  private paneChangesSubscription;
959
1030
  private _styleObserver;
960
- constructor(element: ElementRef<HTMLElement>, splitterService: SplitterService, localization: LocalizationService, renderer: Renderer2, ngZone: NgZone, enclosingPane?: SplitterPaneComponent);
1031
+ constructor(element: ElementRef<HTMLElement>, splitterService: SplitterService, localization: LocalizationService, renderer: Renderer2, ngZone: NgZone, cdr: ChangeDetectorRef, enclosingPane?: SplitterPaneComponent);
961
1032
  ngAfterContentInit(): void;
962
1033
  ngOnChanges(changes: any): void;
963
1034
  ngOnDestroy(): void;
@@ -966,7 +1037,7 @@ declare class SplitterComponent implements AfterContentInit {
966
1037
  private configure;
967
1038
  private get direction();
968
1039
  private setFixedHeight;
969
- static ɵfac: i0.ɵɵFactoryDeclaration<SplitterComponent, [null, null, null, null, null, { optional: true; host: true; }]>;
1040
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitterComponent, [null, null, null, null, null, null, { optional: true; host: true; }]>;
970
1041
  static ɵcmp: i0.ɵɵComponentDeclaration<SplitterComponent, "kendo-splitter", ["kendoSplitter"], { "orientation": { "alias": "orientation"; "required": false; }; "splitbarWidth": { "alias": "splitbarWidth"; "required": false; }; "resizeStep": { "alias": "resizeStep"; "required": false; }; "splitterBarClass": { "alias": "splitterBarClass"; "required": false; }; }, { "layoutChange": "layoutChange"; }, ["panes"], ["kendo-splitter-pane"], true, never>;
971
1042
  }
972
1043
 
@@ -1047,62 +1118,82 @@ declare class TabStripTabComponent {
1047
1118
  /**
1048
1119
  * Sets the title text for the tab ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs#tab-titles)).
1049
1120
  */
1050
- title: string;
1121
+ set title(value: string);
1122
+ get title(): string;
1051
1123
  /**
1052
1124
  * Disables the tab and prevents user interaction ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs#disabled-tabs)).
1053
1125
  *
1054
1126
  * @default false
1055
1127
  */
1056
- disabled: boolean;
1128
+ set disabled(value: boolean);
1129
+ get disabled(): boolean;
1057
1130
  /**
1058
1131
  * Specifies the CSS classes to apply to the `tab` element.
1059
1132
  * Accepts the same values as [`ngClass`](link:site.data.urls.angular['ngclassapi']).
1060
1133
  */
1061
- cssClass: any;
1134
+ set cssClass(value: any);
1135
+ get cssClass(): any;
1062
1136
  /**
1063
1137
  * Specifies the CSS styles to apply to the `tab` element.
1064
1138
  * Accepts the same values as [`ngStyle`](link:site.data.urls.angular['ngstyleapi']).
1065
1139
  */
1066
- cssStyle: any;
1140
+ set cssStyle(value: any);
1141
+ get cssStyle(): any;
1067
1142
  /**
1068
1143
  * Selects the tab when the TabStrip loads
1069
1144
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tabstrip/tabs#selected-tab)).
1070
1145
  */
1071
- selected: boolean;
1146
+ set selected(value: boolean);
1147
+ get selected(): boolean;
1072
1148
  /**
1073
1149
  * Shows a close button inside the tab when set to `true`.
1074
1150
  * This setting overrides the TabStrip `closable` option.
1075
1151
  */
1076
- closable: boolean;
1152
+ set closable(value: boolean);
1153
+ get closable(): boolean;
1077
1154
  /**
1078
1155
  * Sets the name of an existing font icon in the Kendo UI theme for the close button.
1079
1156
  * This setting overrides the TabStrip `closeIcon` option.
1080
1157
  */
1081
- closeIcon: string;
1158
+ set closeIcon(value: string);
1159
+ get closeIcon(): string;
1082
1160
  /**
1083
1161
  * Sets custom CSS classes for the close button icon.
1084
1162
  * You can define a single class or multiple classes separated by spaces.
1085
1163
  * This setting overrides the TabStrip `closeIcon` option.
1086
1164
  */
1087
- closeIconClass: string;
1165
+ set closeIconClass(value: string);
1166
+ get closeIconClass(): string;
1088
1167
  /**
1089
1168
  * Sets an SVG icon for the close button.
1090
1169
  * You can use an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or provide a custom one.
1091
1170
  */
1092
- closeSVGIcon: SVGIcon;
1171
+ set closeSVGIcon(value: SVGIcon);
1172
+ get closeSVGIcon(): SVGIcon;
1093
1173
  get tabContent(): TabContentDirective;
1094
1174
  get tabTitle(): TabTitleDirective;
1095
1175
  get tabTemplate(): TabTemplateDirective;
1096
1176
  _tabDirective: QueryList<TabTemplateDirective>;
1097
1177
  _tabContent: QueryList<TabContentDirective>;
1098
1178
  _tabTitleDirective: QueryList<TabTitleDirective>;
1179
+ private _title;
1180
+ private _disabled;
1181
+ private _cssClass;
1182
+ private _cssStyle;
1183
+ private _selected;
1184
+ private _closable;
1185
+ private _closeIcon;
1186
+ private _closeIconClass;
1187
+ private _closeSVGIcon;
1099
1188
  /**
1100
1189
  * @hidden
1101
1190
  *
1102
1191
  * Currently only disabled tabs can be focused. Otherwise they will be
1103
1192
  * immediately selected
1104
1193
  */
1105
- focused: boolean;
1194
+ set focused(value: boolean);
1195
+ get focused(): boolean;
1196
+ private _focused;
1106
1197
  static ɵfac: i0.ɵɵFactoryDeclaration<TabStripTabComponent, never>;
1107
1198
  static ɵcmp: i0.ɵɵComponentDeclaration<TabStripTabComponent, "kendo-tabstrip-tab", ["kendoTabStripTab"], { "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "cssStyle": { "alias": "cssStyle"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "closeIcon": { "alias": "closeIcon"; "required": false; }; "closeIconClass": { "alias": "closeIconClass"; "required": false; }; "closeSVGIcon": { "alias": "closeSVGIcon"; "required": false; }; }, {}, ["_tabDirective", "_tabContent", "_tabTitleDirective"], never, true, never>;
1108
1199
  }
@@ -1308,9 +1399,12 @@ declare class TabStripScrollableButtonComponent implements AfterViewInit, OnDest
1308
1399
  ariaHidden: boolean;
1309
1400
  get prevClass(): boolean;
1310
1401
  get nextClass(): boolean;
1311
- prev: boolean;
1312
- tabPosition: TabPosition;
1313
- scrollable: boolean | TabStripScrollableSettings;
1402
+ set prev(value: boolean);
1403
+ get prev(): boolean;
1404
+ set tabPosition(value: TabPosition);
1405
+ get tabPosition(): TabPosition;
1406
+ set scrollable(value: boolean | TabStripScrollableSettings);
1407
+ get scrollable(): boolean | TabStripScrollableSettings;
1314
1408
  tabScroll: EventEmitter<TabScrollEvent>;
1315
1409
  onClick: EventEmitter<ScrollButtonType>;
1316
1410
  get hostBoundingClientRect(): any;
@@ -1322,6 +1416,9 @@ declare class TabStripScrollableButtonComponent implements AfterViewInit, OnDest
1322
1416
  chevronUpIcon: SVGIcon;
1323
1417
  chevronDownIcon: SVGIcon;
1324
1418
  private subs;
1419
+ private _prev;
1420
+ private _tabPosition;
1421
+ private _scrollable;
1325
1422
  constructor(host: ElementRef, renderer: Renderer2, ngZone: NgZone, localization: LocalizationService);
1326
1423
  ngAfterViewInit(): void;
1327
1424
  ngOnDestroy(): void;
@@ -1368,6 +1465,8 @@ declare class TabStripComponent implements AfterViewInit, OnDestroy {
1368
1465
  private tabstripService;
1369
1466
  private scrollService;
1370
1467
  private ngZone;
1468
+ private injector;
1469
+ private cdr;
1371
1470
  /**
1372
1471
  * Sets the height of the TabStrip.
1373
1472
  * Accepts a CSS size value, such as `100px`, `50%`, or `auto`.
@@ -1379,19 +1478,22 @@ declare class TabStripComponent implements AfterViewInit, OnDestroy {
1379
1478
  *
1380
1479
  * @default true
1381
1480
  */
1382
- animate: boolean;
1481
+ set animate(value: boolean);
1482
+ get animate(): boolean;
1383
1483
  /**
1384
1484
  * Sets the alignment of the tabs.
1385
1485
  *
1386
1486
  * @default 'start'
1387
1487
  */
1388
- tabAlignment: TabAlignment;
1488
+ set tabAlignment(value: TabAlignment);
1489
+ get tabAlignment(): TabAlignment;
1389
1490
  /**
1390
1491
  * Sets the position of the tabs.
1391
1492
  *
1392
1493
  * @default 'top'
1393
1494
  */
1394
- tabPosition: TabPosition;
1495
+ set tabPosition(value: TabPosition);
1496
+ get tabPosition(): TabPosition;
1395
1497
  /**
1396
1498
  * Controls how the TabStrip renders tab content.
1397
1499
  *
@@ -1405,13 +1507,15 @@ declare class TabStripComponent implements AfterViewInit, OnDestroy {
1405
1507
  *
1406
1508
  * @default false
1407
1509
  */
1408
- keepTabContent: boolean | 'loadOnDemand';
1510
+ set keepTabContent(value: boolean | 'loadOnDemand');
1511
+ get keepTabContent(): boolean | 'loadOnDemand';
1409
1512
  /**
1410
1513
  * When set to `true`, renders a close button inside each tab.
1411
1514
  *
1412
1515
  * @default false
1413
1516
  */
1414
- closable: boolean;
1517
+ set closable(value: boolean);
1518
+ get closable(): boolean;
1415
1519
  /**
1416
1520
  * Enables scrolling of the tab list.
1417
1521
  * When set to `true` and the total size of all tabs exceeds the size of the TabStrip container, scroll buttons appear on each end of the tab list.
@@ -1430,11 +1534,13 @@ declare class TabStripComponent implements AfterViewInit, OnDestroy {
1430
1534
  * Defines the name of an existing font icon in the Kendo UI theme for the close icon.
1431
1535
  * @default 'x'
1432
1536
  */
1433
- closeIcon: string;
1537
+ set closeIcon(value: string);
1538
+ get closeIcon(): string;
1434
1539
  /**
1435
1540
  * Defines a custom CSS class, or multiple classes separated by spaces, applied to the close button.
1436
1541
  */
1437
- closeIconClass: string;
1542
+ set closeIconClass(value: string);
1543
+ get closeIconClass(): string;
1438
1544
  /**
1439
1545
  * Defines an SVGIcon to render for the close icon.
1440
1546
  * The input accepts either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
@@ -1446,7 +1552,8 @@ declare class TabStripComponent implements AfterViewInit, OnDestroy {
1446
1552
  *
1447
1553
  * @default true
1448
1554
  */
1449
- showContentArea: boolean;
1555
+ set showContentArea(value: boolean);
1556
+ get showContentArea(): boolean;
1450
1557
  /**
1451
1558
  * Fires each time a tab is selected.
1452
1559
  * The event data contains the index of the selected tab and its title.
@@ -1511,7 +1618,15 @@ declare class TabStripComponent implements AfterViewInit, OnDestroy {
1511
1618
  private tabsChangesSub;
1512
1619
  private activeStateChangeSub;
1513
1620
  private _size;
1514
- constructor(localization: LocalizationService, renderer: Renderer2, wrapper: ElementRef, tabstripService: TabStripService, scrollService: ScrollService, ngZone: NgZone);
1621
+ private _animate;
1622
+ private _tabAlignment;
1623
+ private _tabPosition;
1624
+ private _keepTabContent;
1625
+ private _closable;
1626
+ private _closeIcon;
1627
+ private _closeIconClass;
1628
+ private _showContentArea;
1629
+ constructor(localization: LocalizationService, renderer: Renderer2, wrapper: ElementRef, tabstripService: TabStripService, scrollService: ScrollService, ngZone: NgZone, injector: Injector, cdr: ChangeDetectorRef);
1515
1630
  ngAfterViewInit(): void;
1516
1631
  ngOnChanges(changes: SimpleChanges): void;
1517
1632
  ngOnDestroy(): void;
@@ -1579,15 +1694,21 @@ declare class TabStripMessages extends ComponentMessages {
1579
1694
  /**
1580
1695
  * Sets the title for the **Close** button in the TabStrip tab.
1581
1696
  */
1582
- closeTitle: string;
1697
+ set closeTitle(value: string);
1698
+ get closeTitle(): string;
1583
1699
  /**
1584
1700
  * Sets the title for the **Previous Tab** button when the TabStrip is scrollable.
1585
1701
  */
1586
- previousTabButton: string;
1702
+ set previousTabButton(value: string);
1703
+ get previousTabButton(): string;
1587
1704
  /**
1588
1705
  * Sets the title for the **Next Tab** button when the TabStrip is scrollable.
1589
1706
  */
1590
- nextTabButton: string;
1707
+ set nextTabButton(value: string);
1708
+ get nextTabButton(): string;
1709
+ private _closeTitle;
1710
+ private _previousTabButton;
1711
+ private _nextTabButton;
1591
1712
  static ɵfac: i0.ɵɵFactoryDeclaration<TabStripMessages, never>;
1592
1713
  static ɵdir: i0.ɵɵDirectiveDeclaration<TabStripMessages, "kendo-tabstrip-messages-base", never, { "closeTitle": { "alias": "closeTitle"; "required": false; }; "previousTabButton": { "alias": "previousTabButton"; "required": false; }; "nextTabButton": { "alias": "nextTabButton"; "required": false; }; }, {}, never, never, true, never>;
1593
1714
  }
@@ -1949,50 +2070,58 @@ declare class DrawerComponent implements OnDestroy {
1949
2070
  *
1950
2071
  * @default 'overlay'
1951
2072
  */
1952
- mode: DrawerMode;
2073
+ set mode(value: DrawerMode);
2074
+ get mode(): DrawerMode;
1953
2075
  /**
1954
2076
  * Specifies the position of the Drawer
1955
2077
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/positioning)).
1956
2078
  *
1957
2079
  * @default 'start'
1958
2080
  */
1959
- position: DrawerPosition;
2081
+ set position(value: DrawerPosition);
2082
+ get position(): DrawerPosition;
1960
2083
  /**
1961
2084
  * Enables the mini (compact) view of the Drawer which displays when the component is collapsed
1962
2085
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/display-modes#mini-view)).
1963
2086
  *
1964
2087
  * @default false
1965
2088
  */
1966
- mini: boolean;
2089
+ set mini(value: boolean);
2090
+ get mini(): boolean;
1967
2091
  /**
1968
2092
  * Specifies the state of the Drawer.
1969
2093
  *
1970
2094
  * @default false
1971
2095
  */
1972
- expanded: boolean;
2096
+ set expanded(value: boolean);
2097
+ get expanded(): boolean;
1973
2098
  /**
1974
2099
  * Defines the width of the Drawer when it is expanded.
1975
2100
  *
1976
2101
  * @default 240
1977
2102
  */
1978
- width: number;
2103
+ set width(value: number);
2104
+ get width(): number;
1979
2105
  /**
1980
2106
  * Defines the width of the Drawer when the mini view is enabled and the component is collapsed.
1981
2107
  * By default, the mini view width is determined by the used Kendo Theme.
1982
2108
  */
1983
- miniWidth: number;
2109
+ set miniWidth(value: number);
2110
+ get miniWidth(): number;
1984
2111
  /**
1985
2112
  * Specifies if the Drawer automatically collapses when an item or the overlay is clicked.
1986
2113
  *
1987
2114
  * @default true
1988
2115
  */
1989
- autoCollapse: boolean;
2116
+ set autoCollapse(value: boolean);
2117
+ get autoCollapse(): boolean;
1990
2118
  /**
1991
2119
  * Defines the collection of items that render in the Drawer.
1992
2120
  *
1993
2121
  * @default []
1994
2122
  */
1995
- items: any[];
2123
+ set items(value: any[]);
2124
+ get items(): any[];
1996
2125
  /**
1997
2126
  * Defines a callback function which determines if an item should be expanded.
1998
2127
  * This is useful for hierarchical data structures where the expansion state of an item depends on its parent or other items.
@@ -2002,14 +2131,15 @@ declare class DrawerComponent implements OnDestroy {
2002
2131
  /**
2003
2132
  * @hidden
2004
2133
  */
2005
- direction: string;
2134
+ get direction(): string;
2006
2135
  /**
2007
2136
  * Specifies the animation settings of the Drawer
2008
2137
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/drawer/interaction-modes#toggling-between-states)).
2009
2138
  *
2010
2139
  * @default { type: 'slide', duration: 200 }
2011
2140
  */
2012
- animation?: boolean | DrawerAnimation;
2141
+ set animation(value: boolean | DrawerAnimation);
2142
+ get animation(): boolean | DrawerAnimation;
2013
2143
  /**
2014
2144
  * Fires when the Drawer is expanded and its animation is complete.
2015
2145
  */
@@ -2053,6 +2183,16 @@ declare class DrawerComponent implements OnDestroy {
2053
2183
  */
2054
2184
  licenseMessage?: LicenseMessage;
2055
2185
  viewItems: DrawerViewItem[];
2186
+ private _mode;
2187
+ private _position;
2188
+ private _mini;
2189
+ private _expanded;
2190
+ private _width;
2191
+ private _miniWidth;
2192
+ private _autoCollapse;
2193
+ private _items;
2194
+ private _animation;
2195
+ private _direction;
2056
2196
  private pendingToggle;
2057
2197
  private animatingViaToggle;
2058
2198
  private dynamicRTLSubscription;
@@ -2123,13 +2263,13 @@ declare class DrawerContainerComponent {
2123
2263
  /**
2124
2264
  * @hidden
2125
2265
  */
2126
- direction: string;
2266
+ get direction(): string;
2127
2267
  /**
2128
2268
  * @hidden
2129
2269
  */
2130
2270
  drawer: DrawerComponent;
2271
+ private _direction;
2131
2272
  private dynamicRTLSubscription;
2132
- private rtl;
2133
2273
  constructor(localizationService: LocalizationService);
2134
2274
  ngOnDestroy(): void;
2135
2275
  /**
@@ -2275,14 +2415,15 @@ declare class StepperIndicatorTemplateDirective {
2275
2415
  declare class StepperService {
2276
2416
  private localization;
2277
2417
  private ngZone;
2278
- private changeDetector;
2279
2418
  owner: any;
2280
2419
  currentStep: number;
2281
- focusedStep: number;
2420
+ set focusedStep(value: number);
2421
+ get focusedStep(): number;
2282
2422
  triggerValidation: EventEmitter<any>;
2283
2423
  focusedStepChange: EventEmitter<number>;
2284
2424
  private get handlers();
2285
- constructor(localization: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef);
2425
+ private _focusedStep;
2426
+ constructor(localization: LocalizationService, ngZone: NgZone);
2286
2427
  emit(event: string, eventArgs: any): boolean;
2287
2428
  onActivate(currentIdx: number, originalEvent: any): void;
2288
2429
  validateSteps(): void;
@@ -2340,20 +2481,23 @@ declare class StepperComponent implements OnChanges, OnDestroy {
2340
2481
  *
2341
2482
  * @default 'indicator'
2342
2483
  */
2343
- stepType: StepType;
2484
+ set stepType(value: StepType);
2485
+ get stepType(): StepType;
2344
2486
  /**
2345
2487
  * Specifies the linear flow of the Stepper.
2346
2488
  *
2347
2489
  * @default true
2348
2490
  */
2349
- linear: boolean;
2491
+ set linear(value: boolean);
2492
+ get linear(): boolean;
2350
2493
  /**
2351
2494
  * Specifies the orientation of the Stepper
2352
2495
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stepper/orientation)).
2353
2496
  *
2354
2497
  * @default 'horizontal'
2355
2498
  */
2356
- orientation: StepperOrientation;
2499
+ set orientation(value: StepperOrientation);
2500
+ get orientation(): StepperOrientation;
2357
2501
  /**
2358
2502
  * Specifies the index of the current step.
2359
2503
  */
@@ -2375,28 +2519,33 @@ declare class StepperComponent implements OnChanges, OnDestroy {
2375
2519
  * Specifies an SVG icon to be rendered for the success icon.
2376
2520
  * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
2377
2521
  */
2378
- successSVGIcon: SVGIcon;
2522
+ set successSVGIcon(value: SVGIcon);
2523
+ get successSVGIcon(): SVGIcon;
2379
2524
  /**
2380
2525
  * Specifies an SVG icon to be rendered for the error icon.
2381
2526
  * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
2382
2527
  */
2383
- errorSVGIcon: SVGIcon;
2528
+ set errorSVGIcon(value: SVGIcon);
2529
+ get errorSVGIcon(): SVGIcon;
2384
2530
  /**
2385
2531
  * Specifies an SVG icon that will be rendered inside the step for valid previous steps.
2386
2532
  * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
2387
2533
  */
2388
- successIcon: string;
2534
+ set successIcon(value: string);
2535
+ get successIcon(): string;
2389
2536
  /**
2390
2537
  * Specifies an SVG icon that will be rendered inside the step for invalid previous steps.
2391
2538
  * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
2392
2539
  */
2393
- errorIcon: string;
2540
+ set errorIcon(value: string);
2541
+ get errorIcon(): string;
2394
2542
  /**
2395
2543
  * Specifies the duration of the progress indicator animation in milliseconds.
2396
2544
  *
2397
2545
  * @default true
2398
2546
  */
2399
- animation?: boolean | number;
2547
+ set animation(value: boolean | number);
2548
+ get animation(): boolean | number;
2400
2549
  /**
2401
2550
  * Fires when a step is about to be activated. You can prevent this event.
2402
2551
  */
@@ -2420,9 +2569,17 @@ declare class StepperComponent implements OnChanges, OnDestroy {
2420
2569
  indicatorTemplate: StepperIndicatorTemplateDirective;
2421
2570
  private dynamicRTLSubscription;
2422
2571
  private _steps;
2572
+ private _svgIcon;
2573
+ private _stepType;
2574
+ private _linear;
2575
+ private _orientation;
2576
+ private _currentStep;
2423
2577
  private _successSVGIcon;
2424
2578
  private _errorSVGIcon;
2425
- private _svgIcon;
2579
+ private _successIcon;
2580
+ private _errorIcon;
2581
+ private _animation;
2582
+ private _progressAnimation;
2426
2583
  constructor(renderer: Renderer2, elem: ElementRef, localization: LocalizationService, stepperService: StepperService);
2427
2584
  ngOnInit(): void;
2428
2585
  ngOnChanges(changes: SimpleChanges): void;
@@ -2474,7 +2631,9 @@ declare class StepperMessages extends ComponentMessages {
2474
2631
  /**
2475
2632
  * Specifies the optional text.
2476
2633
  */
2477
- optional: string;
2634
+ set optional(value: string);
2635
+ get optional(): string;
2636
+ private _optional;
2478
2637
  static ɵfac: i0.ɵɵFactoryDeclaration<StepperMessages, never>;
2479
2638
  static ɵdir: i0.ɵɵDirectiveDeclaration<StepperMessages, "kendo-stepper-messages-base", never, { "optional": { "alias": "optional"; "required": false; }; }, {}, never, never, true, never>;
2480
2639
  }
@@ -2698,16 +2857,19 @@ declare class AvatarComponent implements OnInit {
2698
2857
  *
2699
2858
  * @default false
2700
2859
  */
2701
- border: boolean;
2860
+ set border(value: boolean);
2861
+ get border(): boolean;
2702
2862
  /**
2703
2863
  * Defines a CSS class or multiple classes separated by spaces.
2704
2864
  * You can apply these classes to a `span` element inside the Avatar and also use custom icons.
2705
2865
  */
2706
- iconClass: string;
2866
+ set iconClass(value: string);
2867
+ get iconClass(): string;
2707
2868
  /**
2708
2869
  * Sets the width of the Avatar.
2709
2870
  */
2710
- width: string;
2871
+ set width(value: string);
2872
+ get width(): string;
2711
2873
  /**
2712
2874
  * @hidden
2713
2875
  */
@@ -2715,7 +2877,8 @@ declare class AvatarComponent implements OnInit {
2715
2877
  /**
2716
2878
  * Sets the height of the Avatar.
2717
2879
  */
2718
- height: string;
2880
+ set height(value: string);
2881
+ get height(): string;
2719
2882
  /**
2720
2883
  * @hidden
2721
2884
  */
@@ -2724,20 +2887,24 @@ declare class AvatarComponent implements OnInit {
2724
2887
  * Defines the CSS styles that render on the content element of the Avatar.
2725
2888
  * Supports the type of values that [`ngStyle`](link:site.data.urls.angular['ngstyleapi']) supports.
2726
2889
  */
2727
- cssStyle?: any;
2890
+ set cssStyle(value: any);
2891
+ get cssStyle(): any;
2728
2892
  /**
2729
2893
  * Sets the initials for the Avatar.
2730
2894
  */
2731
- initials: string;
2895
+ set initials(value: string);
2896
+ get initials(): string;
2732
2897
  /**
2733
2898
  * Sets the icon for the Avatar.
2734
2899
  * All [Kendo UI Icons](https://www.telerik.com/kendo-angular-ui/components/styling/icons#icons-list) are supported.
2735
2900
  */
2736
- icon: string;
2901
+ set icon(value: string);
2902
+ get icon(): string;
2737
2903
  /**
2738
2904
  * Sets the image source of the Avatar.
2739
2905
  */
2740
- imageSrc: string;
2906
+ set imageSrc(value: string);
2907
+ get imageSrc(): string;
2741
2908
  /**
2742
2909
  * Defines an SVG icon to render.
2743
2910
  * You can use either an [existing Kendo SVG icon](https://www.telerik.com/kendo-angular-ui/components/icons/svgicon/svgicon-list) or a custom one.
@@ -2749,7 +2916,15 @@ declare class AvatarComponent implements OnInit {
2749
2916
  private _fillMode;
2750
2917
  private _rounded;
2751
2918
  private _svgIcon;
2752
- private _themeColorClasses;
2919
+ private _border;
2920
+ private _iconClass;
2921
+ private _width;
2922
+ private _height;
2923
+ private _cssStyle;
2924
+ private _initials;
2925
+ private _icon;
2926
+ private _imageSrc;
2927
+ private readonly _themeColorClasses;
2753
2928
  constructor(localization: LocalizationService, renderer: Renderer2, element: ElementRef);
2754
2929
  ngOnInit(): void;
2755
2930
  /**
@@ -2774,7 +2949,9 @@ declare class Messages extends ComponentMessages {
2774
2949
  /**
2775
2950
  * Defines the alt attribute text of the image in the Avatar.
2776
2951
  */
2777
- avatarAlt: string;
2952
+ set avatarAlt(value: string);
2953
+ get avatarAlt(): string;
2954
+ private _avatarAlt;
2778
2955
  static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
2779
2956
  static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendoAvatarMessages", never, { "avatarAlt": { "alias": "avatarAlt"; "required": false; }; }, {}, never, never, true, never>;
2780
2957
  }
@@ -2836,21 +3013,25 @@ declare class CardComponent implements OnDestroy {
2836
3013
  /**
2837
3014
  * @hidden
2838
3015
  */
2839
- direction: string;
3016
+ get direction(): string;
2840
3017
  /**
2841
3018
  * Specifies the layout of the Card content.
2842
3019
  *
2843
3020
  * @default 'vertical'
2844
3021
  */
2845
- orientation: Orientation;
3022
+ set orientation(value: Orientation);
3023
+ get orientation(): Orientation;
2846
3024
  /**
2847
3025
  * Defines the width of the Card.
2848
3026
  *
2849
3027
  * @default '285px'
2850
3028
  */
2851
- width: string;
3029
+ set width(value: string);
3030
+ get width(): string;
3031
+ private _direction;
3032
+ private _orientation;
3033
+ private _width;
2852
3034
  private dynamicRTLSubscription;
2853
- private rtl;
2854
3035
  constructor(localizationService: LocalizationService);
2855
3036
  ngOnDestroy(): void;
2856
3037
  static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
@@ -2957,13 +3138,15 @@ declare class CardActionsComponent {
2957
3138
  *
2958
3139
  * @default 'horizontal'
2959
3140
  */
2960
- orientation: Orientation;
3141
+ set orientation(value: Orientation);
3142
+ get orientation(): Orientation;
2961
3143
  /**
2962
3144
  * Specifies the layout of the Card action buttons.
2963
3145
  *
2964
3146
  * @default 'start'
2965
3147
  */
2966
- layout: ActionsLayout;
3148
+ set layout(value: ActionsLayout);
3149
+ get layout(): ActionsLayout;
2967
3150
  /**
2968
3151
  * Defines the Card actions declaratively.
2969
3152
  * You can pass an array of `CardAction` objects or a `TemplateRef`.
@@ -2981,6 +3164,8 @@ declare class CardActionsComponent {
2981
3164
  * @hidden
2982
3165
  */
2983
3166
  actionsTemplate: TemplateRef<any>;
3167
+ private _orientation;
3168
+ private _layout;
2984
3169
  /**
2985
3170
  * @hidden
2986
3171
  */
@@ -3131,19 +3316,22 @@ declare class ExpansionPanelComponent implements OnInit, AfterViewInit, OnDestro
3131
3316
  * Specifies the primary text in the header of the ExpansionPanel
3132
3317
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
3133
3318
  */
3134
- title: string;
3319
+ set title(value: string);
3320
+ get title(): string;
3135
3321
  /**
3136
3322
  * Specifies the secondary text in the header of the ExpansionPanel, which renders next to the collapse/expand icon
3137
3323
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/title#titles-and-subtitles)).
3138
3324
  */
3139
- subtitle: string;
3325
+ set subtitle(value: string);
3326
+ get subtitle(): string;
3140
3327
  /**
3141
3328
  * Specifies whether the ExpansionPanel is disabled. If disabled, the ExpansionPanel can be neither expanded nor collapsed
3142
3329
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/disabled-state)).
3143
3330
  *
3144
3331
  * @default false
3145
3332
  */
3146
- disabled: boolean;
3333
+ set disabled(value: boolean);
3334
+ get disabled(): boolean;
3147
3335
  /**
3148
3336
  * Specifies whether the ExpansionPanel is expanded. The property supports two-way binding
3149
3337
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/interaction#setting-the-initial-state)).
@@ -3168,19 +3356,22 @@ declare class ExpansionPanelComponent implements OnInit, AfterViewInit, OnDestro
3168
3356
  * Sets a custom icon via CSS class(es) for the collapsed state of the component
3169
3357
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
3170
3358
  */
3171
- expandIcon: string;
3359
+ set expandIcon(value: string);
3360
+ get expandIcon(): string;
3172
3361
  /**
3173
3362
  * Sets a custom icon via CSS class(es) for the expanded state of the component
3174
3363
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/icons#icons)).
3175
3364
  */
3176
- collapseIcon: string;
3365
+ set collapseIcon(value: string);
3366
+ get collapseIcon(): string;
3177
3367
  /**
3178
3368
  * Specifies the animation settings of the ExpansionPanel
3179
3369
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/expansionpanel/animations)).
3180
3370
  *
3181
3371
  * @default true
3182
3372
  */
3183
- animation?: boolean | number;
3373
+ set animation(value: boolean | number);
3374
+ get animation(): boolean | number;
3184
3375
  /**
3185
3376
  * Fires when the `expanded` property of the component is updated.
3186
3377
  * Used to provide a two-way binding for the `expanded` property
@@ -3211,16 +3402,23 @@ declare class ExpansionPanelComponent implements OnInit, AfterViewInit, OnDestro
3211
3402
  hostClass: boolean;
3212
3403
  get expandedClass(): boolean;
3213
3404
  get disabledClass(): boolean;
3214
- direction: string;
3405
+ get direction(): string;
3215
3406
  /**
3216
3407
  * @hidden
3217
3408
  */
3218
3409
  focused: boolean;
3219
3410
  private animationEnd;
3220
3411
  private subscriptions;
3412
+ private _title;
3413
+ private _subtitle;
3414
+ private _disabled;
3221
3415
  private _expanded;
3416
+ private _expandIcon;
3417
+ private _collapseIcon;
3418
+ private _animation;
3222
3419
  private _svgExpandIcon;
3223
3420
  private _svgCollapseIcon;
3421
+ private _direction;
3224
3422
  private nextId;
3225
3423
  constructor(renderer: Renderer2, hostElement: ElementRef, ngZone: NgZone, localizationService: LocalizationService, builder: AnimationBuilder);
3226
3424
  ngOnInit(): void;
@@ -3331,17 +3529,20 @@ declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy, OnCha
3331
3529
  /**
3332
3530
  * Sets the title text that appears in the item header ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#tiles-configuration)).
3333
3531
  */
3334
- title: string;
3532
+ set title(value: string);
3533
+ get title(): string;
3335
3534
  /**
3336
3535
  * Sets how many rows the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
3337
3536
  * @default 1
3338
3537
  */
3339
- rowSpan: number;
3538
+ set rowSpan(value: number);
3539
+ get rowSpan(): number;
3340
3540
  /**
3341
3541
  * Sets how many columns the tile item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing#programmatic-resizing)).
3342
3542
  * @default 1
3343
3543
  */
3344
- colSpan: number;
3544
+ set colSpan(value: number);
3545
+ get colSpan(): number;
3345
3546
  /**
3346
3547
  * Sets the order of the tile item within the TileLayout.
3347
3548
  * When not set, items receive increasing order values based on their DOM position.
@@ -3351,22 +3552,26 @@ declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy, OnCha
3351
3552
  /**
3352
3553
  * Sets the starting column position of the item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
3353
3554
  */
3354
- col: number;
3555
+ set col(value: number);
3556
+ get col(): number;
3355
3557
  /**
3356
3558
  * Sets the starting row position of the item ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
3357
3559
  */
3358
- row: number;
3560
+ set row(value: number);
3561
+ get row(): number;
3359
3562
  /**
3360
3563
  * Enables or disables individual item reordering.
3361
3564
  *
3362
3565
  * @default true
3363
3566
  */
3364
- reorderable: boolean;
3567
+ set reorderable(value: boolean);
3568
+ get reorderable(): boolean;
3365
3569
  /**
3366
3570
  * Enables or disables individual item resizing.
3367
3571
  * @default true
3368
3572
  */
3369
- resizable: boolean;
3573
+ set resizable(value: boolean);
3574
+ get resizable(): boolean;
3370
3575
  itemClass: boolean;
3371
3576
  hostRole: string;
3372
3577
  get hostTabindex(): string;
@@ -3391,11 +3596,11 @@ declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy, OnCha
3391
3596
  /**
3392
3597
  * @hidden
3393
3598
  */
3394
- resizeDirections: Array<string>;
3599
+ get resizeDirections(): Array<string>;
3395
3600
  /**
3396
3601
  * @hidden
3397
3602
  */
3398
- rtl: boolean;
3603
+ get rtl(): boolean;
3399
3604
  private headers;
3400
3605
  /**
3401
3606
  * @hidden
@@ -3405,6 +3610,15 @@ declare class TileLayoutItemComponent implements AfterViewInit, OnDestroy, OnCha
3405
3610
  private keyboardNavigationSubs;
3406
3611
  private focusableItems;
3407
3612
  private _order;
3613
+ private _title;
3614
+ private _rowSpan;
3615
+ private _colSpan;
3616
+ private _col;
3617
+ private _row;
3618
+ private _reorderable;
3619
+ private _resizable;
3620
+ private _rtl;
3621
+ private _resizeDirections;
3408
3622
  constructor(elem: ElementRef, zone: NgZone, renderer: Renderer2, localization: LocalizationService, draggingService: TileLayoutDraggingService, keyboardNavigationService: TileLayoutKeyboardNavigationService);
3409
3623
  ngAfterViewInit(): void;
3410
3624
  ngOnChanges(changes: SimpleChanges): void;
@@ -3520,7 +3734,7 @@ declare class TileLayoutDraggingService {
3520
3734
  private cdr;
3521
3735
  private localization;
3522
3736
  reorderable: BehaviorSubject<boolean>;
3523
- resizable: BehaviorSubject<boolean>;
3737
+ resizable: i0.WritableSignal<boolean>;
3524
3738
  reorder: Subject<TileLayoutReorderEvent>;
3525
3739
  resize: Subject<TileLayoutResizeEvent>;
3526
3740
  tileLayoutSettings: DraggingServiceConfig;
@@ -3585,13 +3799,15 @@ declare class TileLayoutComponent implements OnInit, AfterViewInit, AfterContent
3585
3799
  * Specifies the number of columns ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
3586
3800
  * @default 1
3587
3801
  */
3588
- columns: number;
3802
+ set columns(value: number);
3803
+ get columns(): number;
3589
3804
  /**
3590
3805
  * Sets the width of the columns.
3591
3806
  * Use numeric values for pixels or string values for other CSS units ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
3592
3807
  * @default '1fr'
3593
3808
  */
3594
- columnWidth: string | number;
3809
+ set columnWidth(value: string | number);
3810
+ get columnWidth(): string | number;
3595
3811
  /**
3596
3812
  * Sets the spacing between layout items in pixels.
3597
3813
  * Use an object with `rows` and `columns` properties to set different horizontal and vertical spacing.
@@ -3605,18 +3821,21 @@ declare class TileLayoutComponent implements OnInit, AfterViewInit, AfterContent
3605
3821
  * Enables or disables item reordering ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
3606
3822
  * @default false
3607
3823
  */
3608
- reorderable: boolean;
3824
+ set reorderable(value: boolean);
3825
+ get reorderable(): boolean;
3609
3826
  /**
3610
3827
  * Enables or disables item resizing ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/resizing)).
3611
3828
  * @default false
3612
3829
  */
3613
- resizable: boolean;
3830
+ set resizable(value: boolean);
3831
+ get resizable(): boolean;
3614
3832
  /**
3615
3833
  * Sets the height of the rows.
3616
3834
  * Use numeric values for pixels or string values for other CSS units ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/tiles-configuration#size-and-position)).
3617
3835
  * @default '1fr'
3618
3836
  */
3619
- rowHeight: string | number;
3837
+ set rowHeight(value: string | number);
3838
+ get rowHeight(): string | number;
3620
3839
  /**
3621
3840
  *
3622
3841
  * Controls how the auto-placement algorithm works, specifying exactly how auto-placed items are flowed in the TileLayout ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/auto-flow)).
@@ -3624,7 +3843,8 @@ declare class TileLayoutComponent implements OnInit, AfterViewInit, AfterContent
3624
3843
  * For further reference, check the [grid-auto-flow CSS article](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-auto-flow).
3625
3844
  * @default 'column'
3626
3845
  */
3627
- autoFlow: TileLayoutFlowMode;
3846
+ set autoFlow(value: TileLayoutFlowMode);
3847
+ get autoFlow(): TileLayoutFlowMode;
3628
3848
  /**
3629
3849
  * Enables or disables [keyboard navigation](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/keyboard-navigation).
3630
3850
  * @default true
@@ -3632,7 +3852,8 @@ declare class TileLayoutComponent implements OnInit, AfterViewInit, AfterContent
3632
3852
  * @remarks
3633
3853
  * This property is related to accessibility.
3634
3854
  */
3635
- navigable: boolean;
3855
+ set navigable(value: boolean);
3856
+ get navigable(): boolean;
3636
3857
  /**
3637
3858
  * Fires when item reordering is completed ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/tilelayout/reordering)).
3638
3859
  * You can prevent this event to cancel the reorder operation.
@@ -3646,7 +3867,7 @@ declare class TileLayoutComponent implements OnInit, AfterViewInit, AfterContent
3646
3867
  hostClass: boolean;
3647
3868
  hostRole: string;
3648
3869
  get gapStyle(): string;
3649
- direction: 'ltr' | 'rtl';
3870
+ get direction(): string;
3650
3871
  get currentColStart(): string;
3651
3872
  get currentRowStart(): string;
3652
3873
  get draggedItemWrapper(): HTMLElement;
@@ -3667,7 +3888,15 @@ declare class TileLayoutComponent implements OnInit, AfterViewInit, AfterContent
3667
3888
  licenseMessage?: LicenseMessage;
3668
3889
  private draggable;
3669
3890
  private subs;
3891
+ private _columns;
3892
+ private _columnWidth;
3670
3893
  private _gap;
3894
+ private _reorderable;
3895
+ private _resizable;
3896
+ private _rowHeight;
3897
+ private _autoFlow;
3898
+ private _navigable;
3899
+ private _direction;
3671
3900
  constructor(zone: NgZone, elem: ElementRef, renderer: Renderer2, localization: LocalizationService, draggingService: TileLayoutDraggingService, navigationService: TileLayoutKeyboardNavigationService);
3672
3901
  ngOnInit(): void;
3673
3902
  ngAfterViewInit(): void;
@@ -3882,7 +4111,8 @@ declare class GridLayoutComponent implements AfterViewInit, OnChanges {
3882
4111
  * You can define rows by passing an array where the number of elements determines the number of rows or each element defines the size of the corresponding row.
3883
4112
  * For example, you can use CSS units like `px`, `%`, `fr`, or `auto` to define the row sizes.
3884
4113
  */
3885
- rows: Array<any>;
4114
+ set rows(value: Array<any>);
4115
+ get rows(): Array<any>;
3886
4116
  /**
3887
4117
  * Specifies the number of columns and their widths
3888
4118
  * ([More details](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#rows-and-columns)).
@@ -3890,13 +4120,15 @@ declare class GridLayoutComponent implements AfterViewInit, OnChanges {
3890
4120
  * You can define columns by passing an array where the number of elements determines the number of columns or each element defines the size of the corresponding column.
3891
4121
  * For example, you can use CSS units like `px`, `%`, `fr`, or `auto` to define the column sizes.
3892
4122
  */
3893
- cols: Array<any>;
4123
+ set cols(value: Array<any>);
4124
+ get cols(): Array<any>;
3894
4125
  /**
3895
4126
  * Specifies the gaps between the elements ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#gap)).
3896
4127
  *
3897
4128
  * @default 0
3898
4129
  */
3899
- gap: number | string | GridLayoutGapSettings;
4130
+ set gap(value: number | string | GridLayoutGapSettings);
4131
+ get gap(): number | string | GridLayoutGapSettings;
3900
4132
  /**
3901
4133
  * Specifies the horizontal and vertical alignment of the inner GridLayout elements
3902
4134
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/layout#alignment)).
@@ -3904,6 +4136,9 @@ declare class GridLayoutComponent implements AfterViewInit, OnChanges {
3904
4136
  set align(align: AlignSettings);
3905
4137
  get align(): AlignSettings;
3906
4138
  private _align;
4139
+ private _rows;
4140
+ private _cols;
4141
+ private _gap;
3907
4142
  private justifyClass;
3908
4143
  private alignClass;
3909
4144
  constructor(renderer: Renderer2, element: ElementRef, localization: LocalizationService);
@@ -3934,24 +4169,32 @@ declare class GridLayoutItemComponent implements OnChanges {
3934
4169
  * Sets the row of the item in the GridLayout
3935
4170
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
3936
4171
  */
3937
- row: number;
4172
+ set row(value: number);
4173
+ get row(): number;
3938
4174
  /**
3939
4175
  * Sets the column of the item in the GridLayout
3940
4176
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
3941
4177
  */
3942
- col: number;
4178
+ set col(value: number);
4179
+ get col(): number;
3943
4180
  /**
3944
4181
  * Specifies how many rows the item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
3945
4182
  *
3946
4183
  * @default 1
3947
4184
  */
3948
- rowSpan: number;
4185
+ set rowSpan(value: number);
4186
+ get rowSpan(): number;
3949
4187
  /**
3950
4188
  * Specifies how many columns the item spans ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/gridlayout/items#size-and-position)).
3951
4189
  *
3952
4190
  * @default 1
3953
4191
  */
3954
- colSpan: number;
4192
+ set colSpan(value: number);
4193
+ get colSpan(): number;
4194
+ private _row;
4195
+ private _col;
4196
+ private _rowSpan;
4197
+ private _colSpan;
3955
4198
  constructor(renderer: Renderer2, element: ElementRef);
3956
4199
  ngOnInit(): void;
3957
4200
  ngOnChanges(): void;
@@ -3992,15 +4235,19 @@ declare class StackLayoutComponent implements AfterViewInit, OnChanges {
3992
4235
  *
3993
4236
  * @default 0
3994
4237
  */
3995
- gap: number | string;
4238
+ set gap(value: number | string);
4239
+ get gap(): number | string;
3996
4240
  /**
3997
4241
  * Specifies the orientation of the StackLayout
3998
4242
  * ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/stacklayout/layout#orientation)).
3999
4243
  *
4000
4244
  * @default 'horizontal'
4001
4245
  */
4002
- orientation: Orientation;
4246
+ set orientation(value: Orientation);
4247
+ get orientation(): Orientation;
4003
4248
  private _align;
4249
+ private _gap;
4250
+ private _orientation;
4004
4251
  private justifyClass;
4005
4252
  private alignClass;
4006
4253
  constructor(renderer: Renderer2, element: ElementRef, localization: LocalizationService);
@@ -4214,20 +4461,34 @@ declare class TimelineCardComponent implements OnChanges, AfterViewInit {
4214
4461
  element: ElementRef;
4215
4462
  private timelineService;
4216
4463
  private renderer;
4217
- event: TimelineEvent;
4218
- expanded: boolean;
4219
- collapsible: boolean;
4220
- reversed: boolean;
4221
- orientation: Orientation;
4222
- navigable: boolean;
4223
- tabIndex: string;
4224
- animationDuration: number;
4225
- index: number;
4226
- eventWidth: number;
4227
- eventHeight: number;
4228
- headerTemplate: TimelineCardHeaderTemplateDirective;
4229
- bodyTemplate: TimelineCardBodyTemplateDirective;
4230
- actionsTemplate: TimelineCardActionsTemplateDirective;
4464
+ set event(v: TimelineEvent);
4465
+ get event(): TimelineEvent;
4466
+ set expanded(v: boolean);
4467
+ get expanded(): boolean;
4468
+ set collapsible(v: boolean);
4469
+ get collapsible(): boolean;
4470
+ set reversed(v: boolean);
4471
+ get reversed(): boolean;
4472
+ set orientation(v: Orientation);
4473
+ get orientation(): Orientation;
4474
+ set navigable(v: boolean);
4475
+ get navigable(): boolean;
4476
+ set tabIndex(v: string);
4477
+ get tabIndex(): string;
4478
+ set animationDuration(v: number);
4479
+ get animationDuration(): number;
4480
+ set index(v: number);
4481
+ get index(): number;
4482
+ set eventWidth(v: number);
4483
+ get eventWidth(): number;
4484
+ set eventHeight(v: number);
4485
+ get eventHeight(): number;
4486
+ set headerTemplate(v: TimelineCardHeaderTemplateDirective);
4487
+ get headerTemplate(): TimelineCardHeaderTemplateDirective;
4488
+ set bodyTemplate(v: TimelineCardBodyTemplateDirective);
4489
+ get bodyTemplate(): TimelineCardBodyTemplateDirective;
4490
+ set actionsTemplate(v: TimelineCardActionsTemplateDirective);
4491
+ get actionsTemplate(): TimelineCardActionsTemplateDirective;
4231
4492
  set calloutStyle(value: any);
4232
4493
  calloutElementRef: ElementRef;
4233
4494
  hostClass: boolean;
@@ -4239,6 +4500,20 @@ declare class TimelineCardComponent implements OnChanges, AfterViewInit {
4239
4500
  get ariaExpanded(): any;
4240
4501
  calloutSvgIcon: SVGIcon;
4241
4502
  calloutFontIcon: string;
4503
+ private _event;
4504
+ private _expanded;
4505
+ private _collapsible;
4506
+ private _reversed;
4507
+ private _orientation;
4508
+ private _navigable;
4509
+ private _tabIndex;
4510
+ private _animationDuration;
4511
+ private _index;
4512
+ private _eventWidth;
4513
+ private _eventHeight;
4514
+ private _headerTemplate;
4515
+ private _bodyTemplate;
4516
+ private _actionsTemplate;
4242
4517
  private animationState;
4243
4518
  private animationInProgress;
4244
4519
  constructor(element: ElementRef, timelineService: TimelineService, renderer: Renderer2);
@@ -4264,17 +4539,28 @@ declare class TimelineHorizontalComponent implements OnInit, AfterViewInit, OnCh
4264
4539
  private renderer;
4265
4540
  private timelineService;
4266
4541
  private localization;
4267
- events: Array<TimelineEvent>;
4268
- alterMode: boolean;
4269
- collapsibleEvents: boolean;
4270
- navigable: boolean;
4271
- showDateLabels: boolean;
4272
- animationDuration: number;
4273
- eventHeight: number;
4274
- dateFormat: string;
4275
- headerTemplate: TimelineCardHeaderTemplateDirective;
4276
- bodyTemplate: TimelineCardBodyTemplateDirective;
4277
- actionsTemplate: TimelineCardActionsTemplateDirective;
4542
+ set events(v: Array<TimelineEvent>);
4543
+ get events(): Array<TimelineEvent>;
4544
+ set alterMode(v: boolean);
4545
+ get alterMode(): boolean;
4546
+ set collapsibleEvents(v: boolean);
4547
+ get collapsibleEvents(): boolean;
4548
+ set navigable(v: boolean);
4549
+ get navigable(): boolean;
4550
+ set showDateLabels(v: boolean);
4551
+ get showDateLabels(): boolean;
4552
+ set animationDuration(v: number);
4553
+ get animationDuration(): number;
4554
+ set eventHeight(v: number);
4555
+ get eventHeight(): number;
4556
+ set dateFormat(v: string);
4557
+ get dateFormat(): string;
4558
+ set headerTemplate(v: TimelineCardHeaderTemplateDirective);
4559
+ get headerTemplate(): TimelineCardHeaderTemplateDirective;
4560
+ set bodyTemplate(v: TimelineCardBodyTemplateDirective);
4561
+ get bodyTemplate(): TimelineCardBodyTemplateDirective;
4562
+ set actionsTemplate(v: TimelineCardActionsTemplateDirective);
4563
+ get actionsTemplate(): TimelineCardActionsTemplateDirective;
4278
4564
  cardElementRefs: QueryList<ElementRef>;
4279
4565
  circleElementRefs: QueryList<ElementRef>;
4280
4566
  flagElementRefs: QueryList<ElementRef>;
@@ -4283,26 +4569,71 @@ declare class TimelineHorizontalComponent implements OnInit, AfterViewInit, OnCh
4283
4569
  cardComponents: QueryList<TimelineCardComponent>;
4284
4570
  get selectedEvent(): TimelineEvent;
4285
4571
  set selectedEvent(value: TimelineEvent);
4286
- trackWrapWidth: number;
4287
- scrollableTrackWidth: number;
4288
- cardWidth: number;
4572
+ get trackWrapWidth(): number;
4573
+ set trackWrapWidth(v: number);
4574
+ get scrollableTrackWidth(): number;
4575
+ set scrollableTrackWidth(v: number);
4576
+ get cardWidth(): number;
4577
+ set cardWidth(v: number);
4578
+ get calloutStyle(): any;
4579
+ set calloutStyle(v: any);
4580
+ get animationState(): string;
4581
+ set animationState(v: string);
4582
+ get translateValue(): number;
4583
+ set translateValue(v: number);
4584
+ get eventsInInterval(): any[];
4585
+ set eventsInInterval(v: any[]);
4586
+ get selectedCardIndex(): number;
4587
+ set selectedCardIndex(v: number);
4588
+ get selectedEventIndex(): number;
4589
+ set selectedEventIndex(v: number);
4590
+ get tabFlex(): number;
4591
+ set tabFlex(v: number);
4592
+ get tabWidth(): number;
4593
+ set tabWidth(v: number);
4594
+ get visibleTabsCount(): number;
4595
+ set visibleTabsCount(v: number);
4596
+ get firstCircleInView(): number;
4597
+ set firstCircleInView(v: number);
4598
+ get visibleEvents(): any[];
4599
+ set visibleEvents(v: any[]);
4600
+ get trackItems(): any[];
4601
+ set trackItems(v: any[]);
4602
+ get previousTitle(): string;
4603
+ set previousTitle(v: string);
4604
+ get nextTitle(): string;
4605
+ set nextTitle(v: string);
4289
4606
  svgLeftIcon: SVGIcon;
4290
4607
  svgRightIcon: SVGIcon;
4291
- calloutStyle: any;
4292
- animationState: string;
4293
- translateValue: number;
4294
- eventsInInterval: number[];
4295
- selectedCardIndex: number;
4296
- selectedEventIndex: number;
4297
- tabFlex: number;
4298
- tabWidth: number;
4299
- visibleTabsCount: number;
4300
- firstCircleInView: number;
4301
- visibleEvents: any[];
4302
- trackItems: any[];
4303
- previousTitle: string;
4304
- nextTitle: string;
4305
4608
  private _selectedEvent;
4609
+ private _calloutStyle;
4610
+ private _animationState;
4611
+ private _translateValue;
4612
+ private _eventsInInterval;
4613
+ private _selectedCardIndex;
4614
+ private _selectedEventIndex;
4615
+ private _tabFlex;
4616
+ private _visibleTabsCount;
4617
+ private _firstCircleInView;
4618
+ private _trackItems;
4619
+ private _previousTitle;
4620
+ private _nextTitle;
4621
+ private _events;
4622
+ private _alterMode;
4623
+ private _collapsibleEvents;
4624
+ private _navigable;
4625
+ private _showDateLabels;
4626
+ private _animationDuration;
4627
+ private _eventHeight;
4628
+ private _dateFormat;
4629
+ private _headerTemplate;
4630
+ private _bodyTemplate;
4631
+ private _actionsTemplate;
4632
+ private _trackWrapWidth;
4633
+ private _scrollableTrackWidth;
4634
+ private _cardWidth;
4635
+ private _tabWidth;
4636
+ private _visibleEvents;
4306
4637
  private subscriptions;
4307
4638
  constructor(cdr: ChangeDetectorRef, _zone: NgZone, renderer: Renderer2, timelineService: TimelineService, localization: LocalizationService);
4308
4639
  ngOnInit(): void;
@@ -4357,21 +4688,43 @@ declare class TimelineHorizontalComponent implements OnInit, AfterViewInit, OnCh
4357
4688
  */
4358
4689
  declare class TimelineVerticalComponent {
4359
4690
  private renderer;
4360
- events: Array<TimelineEvent>;
4361
- alterMode: boolean;
4362
- collapsibleEvents: boolean;
4363
- navigable: boolean;
4364
- showDateLabels: boolean;
4365
- animationDuration: number;
4366
- eventWidth: number;
4367
- dateFormat: string;
4368
- headerTemplate: TimelineCardHeaderTemplateDirective;
4369
- bodyTemplate: TimelineCardBodyTemplateDirective;
4370
- actionsTemplate: TimelineCardActionsTemplateDirective;
4691
+ set events(v: Array<TimelineEvent>);
4692
+ get events(): Array<TimelineEvent>;
4693
+ set alterMode(v: boolean);
4694
+ get alterMode(): boolean;
4695
+ set collapsibleEvents(v: boolean);
4696
+ get collapsibleEvents(): boolean;
4697
+ set navigable(v: boolean);
4698
+ get navigable(): boolean;
4699
+ set showDateLabels(v: boolean);
4700
+ get showDateLabels(): boolean;
4701
+ set animationDuration(v: number);
4702
+ get animationDuration(): number;
4703
+ set eventWidth(v: number);
4704
+ get eventWidth(): number;
4705
+ set dateFormat(v: string);
4706
+ get dateFormat(): string;
4707
+ set headerTemplate(v: TimelineCardHeaderTemplateDirective);
4708
+ get headerTemplate(): TimelineCardHeaderTemplateDirective;
4709
+ set bodyTemplate(v: TimelineCardBodyTemplateDirective);
4710
+ get bodyTemplate(): TimelineCardBodyTemplateDirective;
4711
+ set actionsTemplate(v: TimelineCardActionsTemplateDirective);
4712
+ get actionsTemplate(): TimelineCardActionsTemplateDirective;
4371
4713
  cards: QueryList<TimelineCardComponent>;
4372
4714
  dateElementRefs: QueryList<ElementRef>;
4373
4715
  innerDateElementRefs: QueryList<ElementRef>;
4374
4716
  private subscriptions;
4717
+ private _events;
4718
+ private _alterMode;
4719
+ private _collapsibleEvents;
4720
+ private _navigable;
4721
+ private _showDateLabels;
4722
+ private _animationDuration;
4723
+ private _eventWidth;
4724
+ private _dateFormat;
4725
+ private _headerTemplate;
4726
+ private _bodyTemplate;
4727
+ private _actionsTemplate;
4375
4728
  constructor(renderer: Renderer2);
4376
4729
  ngAfterViewInit(): void;
4377
4730
  expand(index: number): void;
@@ -4413,20 +4766,23 @@ declare class TimelineComponent implements AfterContentInit, OnDestroy {
4413
4766
  *
4414
4767
  * @default 'vertical'
4415
4768
  */
4416
- orientation: Orientation;
4769
+ set orientation(value: Orientation);
4770
+ get orientation(): Orientation;
4417
4771
  /**
4418
4772
  * Specifies whether to render events alternatingly on both sides of the axis.
4419
4773
  * Applicable when `orientation` is set to `vertical`.
4420
4774
  *
4421
4775
  * @default false
4422
4776
  */
4423
- alterMode: boolean;
4777
+ set alterMode(value: boolean);
4778
+ get alterMode(): boolean;
4424
4779
  /**
4425
4780
  * Specifies whether the event cards can be collapsed.
4426
4781
  *
4427
4782
  * @default true
4428
4783
  */
4429
- collapsibleEvents: boolean;
4784
+ set collapsibleEvents(value: boolean);
4785
+ get collapsibleEvents(): boolean;
4430
4786
  /**
4431
4787
  * Specifies whether the user can use dedicated shortcuts to interact with the Timeline.
4432
4788
  *
@@ -4435,20 +4791,23 @@ declare class TimelineComponent implements AfterContentInit, OnDestroy {
4435
4791
  * @remarks
4436
4792
  * This property is related to accessibility.
4437
4793
  */
4438
- navigable: boolean;
4794
+ set navigable(value: boolean);
4795
+ get navigable(): boolean;
4439
4796
  /**
4440
4797
  * Specifies whether an event's date label will be visible.
4441
4798
  *
4442
4799
  * @default true
4443
4800
  */
4444
- showDateLabels: boolean;
4801
+ set showDateLabels(value: boolean);
4802
+ get showDateLabels(): boolean;
4445
4803
  /**
4446
4804
  * Specifies the time for sliding to the next event in `horizontal` mode and the time for collapsing the event in `vertical` mode.
4447
4805
  * The default animation duration values are `300ms` for `horizontal` mode and `400ms` for `vertical` mode.
4448
4806
  *
4449
4807
  * @default true
4450
4808
  */
4451
- animation: boolean | number;
4809
+ set animation(value: boolean | number);
4810
+ get animation(): boolean | number;
4452
4811
  /**
4453
4812
  * Specifies the order of the Timeline events.
4454
4813
  * `asc` - chronological order
@@ -4538,6 +4897,12 @@ declare class TimelineComponent implements AfterContentInit, OnDestroy {
4538
4897
  actionsTemplate: TimelineCardActionsTemplateDirective;
4539
4898
  private _events;
4540
4899
  private _modelFields;
4900
+ private _orientation;
4901
+ private _alterMode;
4902
+ private _collapsibleEvents;
4903
+ private _navigable;
4904
+ private _showDateLabels;
4905
+ private _animation;
4541
4906
  private _eventWidth;
4542
4907
  private _eventHeight;
4543
4908
  private _dateFormat;
@@ -4585,11 +4950,15 @@ declare class TimelineMessages extends ComponentMessages {
4585
4950
  /**
4586
4951
  * The title of the previous button in horizontal orientation.
4587
4952
  */
4588
- previous: string;
4953
+ set previous(value: string);
4954
+ get previous(): string;
4589
4955
  /**
4590
4956
  * The title of the next button in horizontal orientation.
4591
4957
  */
4592
- next: string;
4958
+ set next(value: string);
4959
+ get next(): string;
4960
+ private _previous;
4961
+ private _next;
4593
4962
  static ɵfac: i0.ɵɵFactoryDeclaration<TimelineMessages, never>;
4594
4963
  static ɵdir: i0.ɵɵDirectiveDeclaration<TimelineMessages, "kendo-timeline-messages-base", never, { "previous": { "alias": "previous"; "required": false; }; "next": { "alias": "next"; "required": false; }; }, {}, never, never, true, never>;
4595
4964
  }
@@ -4834,13 +5203,25 @@ declare class TimelineModule {
4834
5203
  */
4835
5204
  declare class TabComponent {
4836
5205
  localization: LocalizationService;
4837
- tab: TabStripTabComponent;
4838
- index: number;
4839
- tabStripClosable: boolean;
4840
- tabStripCloseIcon: string;
4841
- customTabstripCloseIcon: string;
4842
- closeSVGIcon: SVGIcon;
5206
+ set tab(value: TabStripTabComponent);
5207
+ get tab(): TabStripTabComponent;
5208
+ set index(value: number);
5209
+ get index(): number;
5210
+ set tabStripClosable(value: boolean);
5211
+ get tabStripClosable(): boolean;
5212
+ set tabStripCloseIcon(value: string);
5213
+ get tabStripCloseIcon(): string;
5214
+ set customTabstripCloseIcon(value: string);
5215
+ get customTabstripCloseIcon(): string;
5216
+ set closeSVGIcon(value: SVGIcon);
5217
+ get closeSVGIcon(): SVGIcon;
4843
5218
  tabClose: EventEmitter<TabCloseEvent>;
5219
+ private _tab;
5220
+ private _index;
5221
+ private _tabStripClosable;
5222
+ private _tabStripCloseIcon;
5223
+ private _customTabstripCloseIcon;
5224
+ private _closeSVGIcon;
4844
5225
  hostClasses: boolean;
4845
5226
  get activeClass(): boolean;
4846
5227
  get disabledClass(): boolean | null;
@@ -4863,8 +5244,12 @@ declare class TabComponent {
4863
5244
  declare class TileLayoutResizeHandleDirective implements OnInit {
4864
5245
  private el;
4865
5246
  private renderer;
4866
- resizeDirection: string;
4867
- rtl: boolean;
5247
+ set resizeDirection(value: string);
5248
+ get resizeDirection(): string;
5249
+ set rtl(value: boolean);
5250
+ get rtl(): boolean;
5251
+ private _resizeDirection;
5252
+ private _rtl;
4868
5253
  constructor(el: ElementRef, renderer: Renderer2);
4869
5254
  ngOnInit(): void;
4870
5255
  private setHorizontalPosition;