@progress/kendo-angular-layout 24.0.0-develop.20 → 24.0.0-develop.21

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.
@@ -4,5 +4,11 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /**
6
6
  * Defines the possible theme colors of the Avatar ([see example](https://www.telerik.com/kendo-angular-ui/components/layout/avatar/appearance#theme-color)).
7
+ *
8
+ * The possible values are:
9
+ * * `base`—Applies base coloring value.
10
+ * * `primary`—Applies primary coloring value.
11
+ * * `secondary`—Applies secondary coloring value.
12
+ * * `tertiary`—Applies tertiary coloring value.
7
13
  */
8
- export type AvatarThemeColor = 'primary' | 'secondary' | 'tertiary' | 'base' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
14
+ export type AvatarThemeColor = 'primary' | 'secondary' | 'tertiary' | 'base';
@@ -12,7 +12,7 @@ import { validatePackage } from '@progress/kendo-licensing';
12
12
  import * as i1$2 from '@angular/animations';
13
13
  import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
14
14
  import { Subject, BehaviorSubject, Subscription, of } from 'rxjs';
15
- import { chevronUpIcon, chevronDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, checkCircleIcon, exclamationCircleIcon, chevronRightIcon } from '@progress/kendo-svg-icons';
15
+ import { chevronUpIcon, chevronDownIcon, chevronLeftIcon, chevronRightIcon, xIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
16
16
  import { IconWrapperComponent } from '@progress/kendo-angular-icons';
17
17
  import { NgTemplateOutlet, NgStyle, NgClass } from '@angular/common';
18
18
  import { delay, takeUntil, map, tap, filter, switchMap, take } from 'rxjs/operators';
@@ -29,8 +29,8 @@ const packageMetadata = {
29
29
  productName: 'Kendo UI for Angular',
30
30
  productCode: 'KENDOUIANGULAR',
31
31
  productCodes: ['KENDOUIANGULAR'],
32
- publishDate: 1778149392,
33
- version: '24.0.0-develop.20',
32
+ publishDate: 1778160952,
33
+ version: '24.0.0-develop.21',
34
34
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
35
35
  };
36
36
 
@@ -2489,10 +2489,10 @@ class SplitterBarComponent {
2489
2489
  const isHorizontal = this.orientation === 'horizontal';
2490
2490
  const isRTL = this.direction === 'rtl';
2491
2491
  return classFromObject({
2492
- 'caret-alt-left': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2493
- 'caret-alt-right': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2494
- 'caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
2495
- 'caret-alt-down': isCollapsible && !isHorizontal && isCollapsed
2492
+ 'chevron-left': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2493
+ 'chevron-right': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2494
+ 'chevron-up': isCollapsible && !isHorizontal && !isCollapsed,
2495
+ 'chevron-down': isCollapsible && !isHorizontal && isCollapsed
2496
2496
  });
2497
2497
  }
2498
2498
  previousSVGArrowClass() {
@@ -2502,16 +2502,16 @@ class SplitterBarComponent {
2502
2502
  const isHorizontal = this.orientation === 'horizontal';
2503
2503
  const isRTL = this.direction === 'rtl';
2504
2504
  if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
2505
- return caretAltLeftIcon;
2505
+ return chevronLeftIcon;
2506
2506
  }
2507
2507
  if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
2508
- return caretAltRightIcon;
2508
+ return chevronRightIcon;
2509
2509
  }
2510
2510
  if (isCollapsible && !isHorizontal && !isCollapsed) {
2511
- return caretAltUpIcon;
2511
+ return chevronUpIcon;
2512
2512
  }
2513
2513
  if (isCollapsible && !isHorizontal && isCollapsed) {
2514
- return caretAltDownIcon;
2514
+ return chevronDownIcon;
2515
2515
  }
2516
2516
  }
2517
2517
  nextArrowClass() {
@@ -2521,10 +2521,10 @@ class SplitterBarComponent {
2521
2521
  const isHorizontal = this.orientation === 'horizontal';
2522
2522
  const isRTL = this.direction === 'rtl';
2523
2523
  return classFromObject({
2524
- 'caret-alt-right': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2525
- 'caret-alt-left': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2526
- 'caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
2527
- 'caret-alt-up': isCollapsible && !isHorizontal && isCollapsed
2524
+ 'chevron-right': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2525
+ 'chevron-left': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2526
+ 'chevron-down': isCollapsible && !isHorizontal && !isCollapsed,
2527
+ 'chevron-up': isCollapsible && !isHorizontal && isCollapsed
2528
2528
  });
2529
2529
  }
2530
2530
  nextSVGArrowClass() {
@@ -2534,16 +2534,16 @@ class SplitterBarComponent {
2534
2534
  const isHorizontal = this.orientation === 'horizontal';
2535
2535
  const isRTL = this.direction === 'rtl';
2536
2536
  if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
2537
- return caretAltRightIcon;
2537
+ return chevronRightIcon;
2538
2538
  }
2539
2539
  if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
2540
- return caretAltLeftIcon;
2540
+ return chevronLeftIcon;
2541
2541
  }
2542
2542
  if (isCollapsible && !isHorizontal && !isCollapsed) {
2543
- return caretAltDownIcon;
2543
+ return chevronDownIcon;
2544
2544
  }
2545
2545
  if (isCollapsible && !isHorizontal && isCollapsed) {
2546
- return caretAltUpIcon;
2546
+ return chevronUpIcon;
2547
2547
  }
2548
2548
  }
2549
2549
  togglePane() {
@@ -3504,10 +3504,10 @@ const HIDDEN_CLASS = 'k-hidden';
3504
3504
  * @hidden
3505
3505
  */
3506
3506
  const DIRECTION_CLASSES = {
3507
- left: 'caret-alt-left',
3508
- right: 'caret-alt-right',
3509
- up: 'caret-alt-up',
3510
- down: 'caret-alt-down'
3507
+ left: 'chevron-left',
3508
+ right: 'chevron-right',
3509
+ up: 'chevron-up',
3510
+ down: 'chevron-down'
3511
3511
  };
3512
3512
  /**
3513
3513
  * @hidden
@@ -3729,10 +3729,10 @@ class TabStripScrollableButtonComponent {
3729
3729
  get svgIcon() {
3730
3730
  return this.scrollButtonSVGIcon;
3731
3731
  }
3732
- caretAltLeftIcon = caretAltLeftIcon;
3733
- caretAltRightIcon = caretAltRightIcon;
3734
- caretAltUpIcon = caretAltUpIcon;
3735
- caretAltDownIcon = caretAltDownIcon;
3732
+ chevronLeftIcon = chevronLeftIcon;
3733
+ chevronRightIcon = chevronRightIcon;
3734
+ chevronUpIcon = chevronUpIcon;
3735
+ chevronDownIcon = chevronDownIcon;
3736
3736
  subs = new Subscription();
3737
3737
  constructor(host, renderer, ngZone, localization) {
3738
3738
  this.host = host;
@@ -3761,16 +3761,22 @@ class TabStripScrollableButtonComponent {
3761
3761
  this.onClick.emit(buttonType);
3762
3762
  };
3763
3763
  get scrollButtonIconClass() {
3764
- const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ?
3765
- !this.localization.rtl ?
3766
- DIRECTION_CLASSES.left :
3767
- DIRECTION_CLASSES.right :
3768
- DIRECTION_CLASSES.up;
3769
- const defaultNextIcon = isTablistHorizontal(this.tabPosition) ?
3770
- !this.localization.rtl ?
3771
- DIRECTION_CLASSES.right :
3772
- DIRECTION_CLASSES.left :
3773
- DIRECTION_CLASSES.down;
3764
+ const horizontal = isTablistHorizontal(this.tabPosition);
3765
+ const rtl = this.localization.rtl;
3766
+ let defaultPrevIcon;
3767
+ if (!horizontal) {
3768
+ defaultPrevIcon = DIRECTION_CLASSES.up;
3769
+ }
3770
+ else {
3771
+ defaultPrevIcon = rtl ? DIRECTION_CLASSES.right : DIRECTION_CLASSES.left;
3772
+ }
3773
+ let defaultNextIcon;
3774
+ if (!horizontal) {
3775
+ defaultNextIcon = DIRECTION_CLASSES.down;
3776
+ }
3777
+ else {
3778
+ defaultNextIcon = rtl ? DIRECTION_CLASSES.left : DIRECTION_CLASSES.right;
3779
+ }
3774
3780
  if (typeof this.scrollable === 'object') {
3775
3781
  const prevIcon = typeof this.scrollable.prevButtonIcon === 'undefined' ? defaultPrevIcon : '';
3776
3782
  const nextIcon = typeof this.scrollable.nextButtonIcon === 'undefined' ? defaultNextIcon : '';
@@ -3795,16 +3801,22 @@ class TabStripScrollableButtonComponent {
3795
3801
  }
3796
3802
  }
3797
3803
  get scrollButtonSVGIcon() {
3798
- const defaultPrevSVGIcon = isTablistHorizontal(this.tabPosition) ?
3799
- !this.localization.rtl ?
3800
- this.caretAltLeftIcon :
3801
- this.caretAltRightIcon :
3802
- this.caretAltUpIcon;
3803
- const defaultNextSVGIcon = isTablistHorizontal(this.tabPosition) ?
3804
- !this.localization.rtl ?
3805
- this.caretAltRightIcon :
3806
- this.caretAltLeftIcon :
3807
- this.caretAltDownIcon;
3804
+ const horizontal = isTablistHorizontal(this.tabPosition);
3805
+ const rtl = this.localization.rtl;
3806
+ let defaultPrevSVGIcon;
3807
+ if (!horizontal) {
3808
+ defaultPrevSVGIcon = this.chevronUpIcon;
3809
+ }
3810
+ else {
3811
+ defaultPrevSVGIcon = rtl ? this.chevronRightIcon : this.chevronLeftIcon;
3812
+ }
3813
+ let defaultNextSVGIcon;
3814
+ if (!horizontal) {
3815
+ defaultNextSVGIcon = this.chevronDownIcon;
3816
+ }
3817
+ else {
3818
+ defaultNextSVGIcon = rtl ? this.chevronLeftIcon : this.chevronRightIcon;
3819
+ }
3808
3820
  if (typeof this.scrollable === 'object') {
3809
3821
  const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : defaultPrevSVGIcon;
3810
3822
  const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : defaultNextSVGIcon;
@@ -3954,7 +3966,7 @@ class TabComponent {
3954
3966
  }
3955
3967
 
3956
3968
  @if (tabClosable) {
3957
- <span class="k-remove-tab k-icon-button k-button k-button-md k-rounded-md k-button-flat-base k-button-flat"
3969
+ <span class="k-remove-tab k-icon-button k-button k-button-xs k-rounded-md k-button-flat-base k-button-flat"
3958
3970
  (click)="closeTab(index)" [title]="closeButtonTitle">
3959
3971
  <kendo-icon-wrapper
3960
3972
  [svgIcon]="closeSVGIconClass" [name]="closeIconClasses"
@@ -3986,7 +3998,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
3986
3998
  }
3987
3999
 
3988
4000
  @if (tabClosable) {
3989
- <span class="k-remove-tab k-icon-button k-button k-button-md k-rounded-md k-button-flat-base k-button-flat"
4001
+ <span class="k-remove-tab k-icon-button k-button k-button-xs k-rounded-md k-button-flat-base k-button-flat"
3990
4002
  (click)="closeTab(index)" [title]="closeButtonTitle">
3991
4003
  <kendo-icon-wrapper
3992
4004
  [svgIcon]="closeSVGIconClass" [name]="closeIconClasses"
@@ -8078,7 +8090,7 @@ class AvatarComponent {
8078
8090
  _fillMode = undefined;
8079
8091
  _rounded = undefined;
8080
8092
  _svgIcon;
8081
- _themeColorClasses = ['k-avatar-primary', 'k-avatar-secondary', 'k-avatar-tertiary', 'k-avatar-base', 'k-avatar-info', 'k-avatar-success', 'k-avatar-warning', 'k-avatar-error', 'k-avatar-dark', 'k-avatar-light', 'k-avatar-inverse'];
8093
+ _themeColorClasses = ['k-avatar-primary', 'k-avatar-secondary', 'k-avatar-tertiary', 'k-avatar-base'];
8082
8094
  constructor(localization, renderer, element) {
8083
8095
  this.localization = localization;
8084
8096
  this.renderer = renderer;
@@ -11945,7 +11957,7 @@ class TimelineCardComponent {
11945
11957
  <div kendoCardTitle>
11946
11958
  <span class="k-event-title">{{ event.title }}</span>
11947
11959
  @if (collapsible && orientation === 'vertical') {
11948
- <span class="k-event-collapse k-button k-button-flat k-icon-button">
11960
+ <span class="k-event-collapse k-button k-button-flat k-button-xs k-icon-button">
11949
11961
  <kendo-icon-wrapper
11950
11962
  [name]="calloutFontIcon"
11951
11963
  [svgIcon]="calloutSvgIcon"
@@ -12095,7 +12107,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
12095
12107
  <div kendoCardTitle>
12096
12108
  <span class="k-event-title">{{ event.title }}</span>
12097
12109
  @if (collapsible && orientation === 'vertical') {
12098
- <span class="k-event-collapse k-button k-button-flat k-icon-button">
12110
+ <span class="k-event-collapse k-button k-button-flat k-button-xs k-icon-button">
12099
12111
  <kendo-icon-wrapper
12100
12112
  [name]="calloutFontIcon"
12101
12113
  [svgIcon]="calloutSvgIcon"
@@ -12263,8 +12275,8 @@ class TimelineHorizontalComponent {
12263
12275
  trackWrapWidth;
12264
12276
  scrollableTrackWidth;
12265
12277
  cardWidth;
12266
- svgLeftIcon = caretAltLeftIcon;
12267
- svgRightIcon = caretAltRightIcon;
12278
+ svgLeftIcon = chevronLeftIcon;
12279
+ svgRightIcon = chevronRightIcon;
12268
12280
  calloutStyle;
12269
12281
  animationState = 'center';
12270
12282
  translateValue = 0;
@@ -12678,7 +12690,7 @@ class TimelineHorizontalComponent {
12678
12690
  <button
12679
12691
  kendoButton
12680
12692
  [svgIcon]="svgLeftIcon"
12681
- icon="caret-alt-left"
12693
+ icon="chevron-left"
12682
12694
  class="k-timeline-arrow k-timeline-arrow-left"
12683
12695
  rounded="full"
12684
12696
  [title]="previousTitle"
@@ -12691,7 +12703,7 @@ class TimelineHorizontalComponent {
12691
12703
  <button
12692
12704
  kendoButton
12693
12705
  [svgIcon]="svgRightIcon"
12694
- icon="caret-alt-right"
12706
+ icon="chevron-right"
12695
12707
  class="k-timeline-arrow k-timeline-arrow-right"
12696
12708
  rounded="full"
12697
12709
  [title]="nextTitle"
@@ -12780,7 +12792,7 @@ class TimelineHorizontalComponent {
12780
12792
  }
12781
12793
  <kendo-resize-sensor (resize)="onResize()" [rateLimit]="10"></kendo-resize-sensor>
12782
12794
  </div>
12783
- `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "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: [
12795
+ `, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconPosition", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon"], 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: [
12784
12796
  trigger('trackSlide', [
12785
12797
  state('left', style({
12786
12798
  transform: `translateX({{transformValue}}%)`,
@@ -12834,7 +12846,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
12834
12846
  <button
12835
12847
  kendoButton
12836
12848
  [svgIcon]="svgLeftIcon"
12837
- icon="caret-alt-left"
12849
+ icon="chevron-left"
12838
12850
  class="k-timeline-arrow k-timeline-arrow-left"
12839
12851
  rounded="full"
12840
12852
  [title]="previousTitle"
@@ -12847,7 +12859,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
12847
12859
  <button
12848
12860
  kendoButton
12849
12861
  [svgIcon]="svgRightIcon"
12850
- icon="caret-alt-right"
12862
+ icon="chevron-right"
12851
12863
  class="k-timeline-arrow k-timeline-arrow-right"
12852
12864
  rounded="full"
12853
12865
  [title]="nextTitle"
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1778149392,
11
- "version": "24.0.0-develop.20",
10
+ "publishDate": 1778160952,
11
+ "version": "24.0.0-develop.21",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "24.0.0-develop.20",
3
+ "version": "24.0.0-develop.21",
4
4
  "description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -63,7 +63,7 @@
63
63
  "package": {
64
64
  "productName": "Kendo UI for Angular",
65
65
  "productCode": "KENDOUIANGULAR",
66
- "publishDate": 1778149392,
66
+ "publishDate": 1778160952,
67
67
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
68
68
  }
69
69
  },
@@ -73,17 +73,17 @@
73
73
  "@angular/core": "19 - 21",
74
74
  "@angular/platform-browser": "19 - 21",
75
75
  "@progress/kendo-licensing": "^1.11.0",
76
- "@progress/kendo-angular-common": "24.0.0-develop.20",
77
- "@progress/kendo-angular-l10n": "24.0.0-develop.20",
78
- "@progress/kendo-angular-progressbar": "24.0.0-develop.20",
79
- "@progress/kendo-angular-icons": "24.0.0-develop.20",
80
- "@progress/kendo-angular-buttons": "24.0.0-develop.20",
81
- "@progress/kendo-angular-intl": "24.0.0-develop.20",
76
+ "@progress/kendo-angular-common": "24.0.0-develop.21",
77
+ "@progress/kendo-angular-l10n": "24.0.0-develop.21",
78
+ "@progress/kendo-angular-progressbar": "24.0.0-develop.21",
79
+ "@progress/kendo-angular-icons": "24.0.0-develop.21",
80
+ "@progress/kendo-angular-buttons": "24.0.0-develop.21",
81
+ "@progress/kendo-angular-intl": "24.0.0-develop.21",
82
82
  "rxjs": "^6.5.3 || ^7.0.0"
83
83
  },
84
84
  "dependencies": {
85
85
  "tslib": "^2.3.1",
86
- "@progress/kendo-angular-schematics": "24.0.0-develop.20",
86
+ "@progress/kendo-angular-schematics": "24.0.0-develop.21",
87
87
  "@progress/kendo-draggable": "^3.0.2"
88
88
  },
89
89
  "schematics": "./schematics/collection.json",
@@ -29,10 +29,10 @@ export declare class TabStripScrollableButtonComponent implements AfterViewInit,
29
29
  get iconClass(): string;
30
30
  get customIconClass(): string;
31
31
  get svgIcon(): SVGIcon;
32
- caretAltLeftIcon: SVGIcon;
33
- caretAltRightIcon: SVGIcon;
34
- caretAltUpIcon: SVGIcon;
35
- caretAltDownIcon: SVGIcon;
32
+ chevronLeftIcon: SVGIcon;
33
+ chevronRightIcon: SVGIcon;
34
+ chevronUpIcon: SVGIcon;
35
+ chevronDownIcon: SVGIcon;
36
36
  private subs;
37
37
  constructor(host: ElementRef, renderer: Renderer2, ngZone: NgZone, localization: LocalizationService);
38
38
  ngAfterViewInit(): void;