@progress/kendo-angular-layout 7.1.2-dev.202208301247 → 7.1.3-dev.202209091352

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.
@@ -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 * as i2 from '@angular/common';
15
+ import * as i3 from '@angular/common';
16
16
  import { CommonModule } from '@angular/common';
17
17
  import { delay, takeUntil, map, tap, filter, switchMap, take } from 'rxjs/operators';
18
18
  import * as i4 from '@progress/kendo-angular-progressbar';
@@ -26,7 +26,7 @@ const packageMetadata = {
26
26
  name: '@progress/kendo-angular-layout',
27
27
  productName: 'Kendo UI for Angular',
28
28
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
29
- publishDate: 1661863628,
29
+ publishDate: 1662731489,
30
30
  version: '',
31
31
  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'
32
32
  };
@@ -355,9 +355,6 @@ class PanelBarItemComponent {
355
355
  get kStateDefaultClass() {
356
356
  return !this.disabled;
357
357
  }
358
- get kStateDisabledClass() {
359
- return this.disabled;
360
- }
361
358
  get kStateExpandedClass() {
362
359
  return !this.disabled && this.expanded && (this.hasChildItems || this.hasContent);
363
360
  }
@@ -376,9 +373,6 @@ class PanelBarItemComponent {
376
373
  get headerClass() {
377
374
  return this.parent ? null : true;
378
375
  }
379
- get childClass() {
380
- return this.parent ? true : null;
381
- }
382
376
  /**
383
377
  * @hidden
384
378
  */
@@ -510,12 +504,13 @@ class PanelBarItemComponent {
510
504
  }
511
505
  }
512
506
  PanelBarItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: PanelBarItemComponent, deps: [{ token: PanelBarItemComponent, host: true, optional: true, skipSelf: true }, { token: PanelBarService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
513
- PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: { title: "title", id: "id", icon: "icon", iconClass: "iconClass", imageUrl: "imageUrl", disabled: "disabled", expanded: "expanded", selected: "selected", content: "content", items: "items", template: "template" }, host: { properties: { "attr.role": "this.role", "attr.title": "this.titleAttribute", "class.k-item": "this.kItemClass", "class.k-state-default": "this.kStateDefaultClass", "class.k-disabled": "this.kStateDisabledClass", "class.k-state-expanded": "this.kStateExpandedClass", "id": "this.itemId", "attr.aria-expanded": "this.ariaExpanded", "attr.aria-selected": "this.ariaSelected", "attr.aria-disabled": "this.ariaDisabled", "class.k-panelbar-header": "this.headerClass", "class.k-panelbar-item": "this.childClass" } }, queries: [{ propertyName: "contentItems", predicate: PanelBarItemComponent }, { propertyName: "contentTemplate", predicate: PanelBarContentDirective }, { propertyName: "titleTemplates", predicate: PanelBarItemTitleDirective }], viewQueries: [{ propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "contentWrapper", first: true, predicate: ["contentWrapper"], descendants: true }, { propertyName: "viewChildItems", predicate: PanelBarItemComponent, descendants: true }], exportAs: ["kendoPanelbarItem"], ngImport: i0, template: `
507
+ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: { title: "title", id: "id", icon: "icon", iconClass: "iconClass", imageUrl: "imageUrl", disabled: "disabled", expanded: "expanded", selected: "selected", content: "content", items: "items", template: "template" }, host: { properties: { "attr.role": "this.role", "attr.title": "this.titleAttribute", "class.k-panelbar-item": "this.kItemClass", "class.k-state-default": "this.kStateDefaultClass", "class.k-expanded": "this.kStateExpandedClass", "id": "this.itemId", "attr.aria-expanded": "this.ariaExpanded", "attr.aria-selected": "this.ariaSelected", "attr.aria-disabled": "this.ariaDisabled", "class.k-panelbar-header": "this.headerClass" } }, queries: [{ propertyName: "contentItems", predicate: PanelBarItemComponent }, { propertyName: "contentTemplate", predicate: PanelBarContentDirective }, { propertyName: "titleTemplates", predicate: PanelBarItemTitleDirective }], viewQueries: [{ propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "contentWrapper", first: true, predicate: ["contentWrapper"], descendants: true }, { propertyName: "viewChildItems", predicate: PanelBarItemComponent, descendants: true }], exportAs: ["kendoPanelbarItem"], ngImport: i0, template: `
514
508
  <span
515
509
  #header
516
510
  [class.k-link]="true"
517
511
  [class.k-selected]="!disabled && selected"
518
512
  [class.k-focus]="focused && wrapperFocused"
513
+ [class.k-disabled]="disabled"
519
514
  (click)="onItemClick($event)">
520
515
  <span
521
516
  *ngIf="icon || iconClass"
@@ -620,7 +615,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
620
615
  </ng-template>
621
616
  <ng-template [ngIf]="!template">{{content}}</ng-template>
622
617
  </div>
623
- </div>`, isInline: true, components: [{ type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
618
+ </div>`, isInline: true, components: [{ type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
624
619
  trigger('toggle', [
625
620
  state('inactive', style({ display: 'none' })),
626
621
  transition('* => active', [
@@ -657,6 +652,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
657
652
  [class.k-link]="true"
658
653
  [class.k-selected]="!disabled && selected"
659
654
  [class.k-focus]="focused && wrapperFocused"
655
+ [class.k-disabled]="disabled"
660
656
  (click)="onItemClick($event)">
661
657
  <span
662
658
  *ngIf="icon || iconClass"
@@ -805,16 +801,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
805
801
  args: ['attr.title']
806
802
  }], kItemClass: [{
807
803
  type: HostBinding,
808
- args: ['class.k-item']
804
+ args: ['class.k-panelbar-item']
809
805
  }], kStateDefaultClass: [{
810
806
  type: HostBinding,
811
807
  args: ['class.k-state-default']
812
- }], kStateDisabledClass: [{
813
- type: HostBinding,
814
- args: ['class.k-disabled']
815
808
  }], kStateExpandedClass: [{
816
809
  type: HostBinding,
817
- args: ['class.k-state-expanded']
810
+ args: ['class.k-expanded']
818
811
  }], itemId: [{
819
812
  type: HostBinding,
820
813
  args: ['id']
@@ -830,9 +823,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
830
823
  }], headerClass: [{
831
824
  type: HostBinding,
832
825
  args: ['class.k-panelbar-header']
833
- }], childClass: [{
834
- type: HostBinding,
835
- args: ['class.k-panelbar-item']
836
826
  }], viewChildItems: [{
837
827
  type: ViewChildren,
838
828
  args: [PanelBarItemComponent]
@@ -1412,7 +1402,7 @@ PanelBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
1412
1402
  </kendo-panelbar-item>
1413
1403
  </ng-container>
1414
1404
  </ng-template>
1415
- `, isInline: true, components: [{ type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1405
+ `, isInline: true, components: [{ type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
1416
1406
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: PanelBarComponent, decorators: [{
1417
1407
  type: Component,
1418
1408
  args: [{
@@ -1629,11 +1619,11 @@ class SplitterPaneComponent {
1629
1619
  ngAfterViewChecked() {
1630
1620
  const element = this.element.nativeElement;
1631
1621
  if (this.isHidden) {
1632
- this.renderer.addClass(element, 'k-state-hidden');
1622
+ this.renderer.addClass(element, 'k-hidden');
1633
1623
  this.renderer.addClass(element, 'hidden');
1634
1624
  }
1635
1625
  else {
1636
- this.renderer.removeClass(element, 'k-state-hidden');
1626
+ this.renderer.removeClass(element, 'k-hidden');
1637
1627
  this.renderer.removeClass(element, 'hidden');
1638
1628
  }
1639
1629
  }
@@ -1671,7 +1661,7 @@ SplitterPaneComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", ve
1671
1661
  SplitterPaneComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: { order: "order", size: "size", min: "min", max: "max", resizable: "resizable", collapsible: "collapsible", scrollable: "scrollable", collapsed: "collapsed", orientation: "orientation", containsSplitter: "containsSplitter", overlayContent: "overlayContent" }, outputs: { sizeChange: "sizeChange", collapsedChange: "collapsedChange" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-pane": "this.hostClass", "class.k-pane-static": "this.staticPaneClass", "class.k-scrollable": "this.scrollablePaneClass" } }, exportAs: ["kendoSplitterPane"], ngImport: i0, template: `
1672
1662
  <ng-container *ngIf="!collapsed"><ng-content></ng-content></ng-container>
1673
1663
  <div *ngIf="overlayContent" class="k-splitter-overlay k-overlay"></div>
1674
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1664
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1675
1665
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterPaneComponent, decorators: [{
1676
1666
  type: Component,
1677
1667
  args: [{
@@ -1994,16 +1984,26 @@ class SplitterBarComponent {
1994
1984
  toggleNext() {
1995
1985
  this.splitter.tryToggle(this.index + 1);
1996
1986
  }
1987
+ shouldShowIcon(iconName) {
1988
+ const paneIndex = iconName === 'prev' ? this.index : this.index + 1;
1989
+ const relatedPaneIndex = iconName === 'prev' ? this.index + 1 : this.index;
1990
+ const pane = this.splitter.pane(paneIndex);
1991
+ const relatedPane = this.splitter.pane(relatedPaneIndex);
1992
+ const isCollapsible = pane.collapsible;
1993
+ return isCollapsible && !relatedPane.isHidden;
1994
+ }
1995
+ collapseClass(order) {
1996
+ const pane = this.splitter.pane(this.index);
1997
+ const isCollapsible = pane.collapsible;
1998
+ return isCollapsible ? `k-collapse-${order}` : '';
1999
+ }
1997
2000
  previousArrowClass() {
1998
2001
  const pane = this.splitter.pane(this.index);
1999
- const nextPane = this.splitter.pane(this.index + 1);
2000
2002
  const isCollapsible = pane.collapsible;
2001
2003
  const isCollapsed = pane.collapsed;
2002
2004
  const isHorizontal = this.orientation === 'horizontal';
2003
2005
  return classFromObject({
2004
2006
  'k-icon': true,
2005
- 'k-hidden': !isCollapsible || nextPane.isHidden,
2006
- 'k-collapse-prev': isCollapsible,
2007
2007
  'k-i-caret-alt-left': isCollapsible && isHorizontal && !isCollapsed,
2008
2008
  'k-i-caret-alt-right': isCollapsible && isHorizontal && isCollapsed,
2009
2009
  'k-i-caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
@@ -2012,14 +2012,11 @@ class SplitterBarComponent {
2012
2012
  }
2013
2013
  nextArrowClass() {
2014
2014
  const pane = this.splitter.pane(this.index + 1);
2015
- const prevPane = this.splitter.pane(this.index);
2016
2015
  const isCollapsible = pane.collapsible;
2017
2016
  const isCollapsed = pane.collapsed;
2018
2017
  const isHorizontal = this.orientation === 'horizontal';
2019
2018
  return classFromObject({
2020
2019
  'k-icon': true,
2021
- 'k-hidden': !isCollapsible || prevPane.isHidden,
2022
- 'k-collapse-next': isCollapsible,
2023
2020
  'k-i-caret-alt-right': isCollapsible && isHorizontal && !isCollapsed,
2024
2021
  'k-i-caret-alt-left': isCollapsible && isHorizontal && isCollapsed,
2025
2022
  'k-i-caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
@@ -2036,18 +2033,26 @@ class SplitterBarComponent {
2036
2033
  }
2037
2034
  SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i0.ElementRef }, { token: SplitterService }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
2038
2035
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SplitterBarComponent, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { listeners: { "dblclick": "collapseAny()", "focusin": "onFocusIn()", "focusout": "onFocusOut()", "keydown": "onKeyDown($event)" }, properties: { "attr.aria-orientation": "this.orientation", "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
2039
- <div [class]="previousArrowClass()" (click)="togglePrevious()"></div>
2040
- <div class="k-resize-handle"></div>
2041
- <div [class]="nextArrowClass()" (click)="toggleNext()"></div>
2042
- `, isInline: true });
2036
+ <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
2037
+ <span [class]="previousArrowClass()"></span>
2038
+ </div>
2039
+ <div class="k-resize-handle"></div>
2040
+ <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
2041
+ <span [class]="nextArrowClass()"></span>
2042
+ </div>
2043
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2043
2044
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterBarComponent, decorators: [{
2044
2045
  type: Component,
2045
2046
  args: [{
2046
2047
  selector: 'kendo-splitter-bar',
2047
2048
  template: `
2048
- <div [class]="previousArrowClass()" (click)="togglePrevious()"></div>
2049
- <div class="k-resize-handle"></div>
2050
- <div [class]="nextArrowClass()" (click)="toggleNext()"></div>
2049
+ <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
2050
+ <span [class]="previousArrowClass()"></span>
2051
+ </div>
2052
+ <div class="k-resize-handle"></div>
2053
+ <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
2054
+ <span [class]="nextArrowClass()"></span>
2055
+ </div>
2051
2056
  `
2052
2057
  }]
2053
2058
  }], ctorParameters: function () { return [{ type: i1$1.DraggableDirective, decorators: [{
@@ -2234,7 +2239,7 @@ SplitterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
2234
2239
  [orientation]="orientation">
2235
2240
  </kendo-splitter-bar>
2236
2241
  </ng-container>
2237
- `, isInline: true, components: [{ type: SplitterBarComponent, selector: "kendo-splitter-bar", inputs: ["orientation", "index"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }] });
2242
+ `, isInline: true, components: [{ type: SplitterBarComponent, selector: "kendo-splitter-bar", inputs: ["orientation", "index"] }], directives: [{ type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1$1.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }] });
2238
2243
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterComponent, decorators: [{
2239
2244
  type: Component,
2240
2245
  args: [{
@@ -3027,7 +3032,7 @@ class TabStripScrollableButtonComponent {
3027
3032
  TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3028
3033
  TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: { prev: "prev", tabPosition: "tabPosition", scrollable: "scrollable" }, outputs: { tabScroll: "tabScroll", onClick: "onClick" }, host: { properties: { "class.k-button": "this.btnClasses", "class.k-button-md": "this.btnClasses", "class.k-icon-button": "this.btnClasses", "class.k-rounded-md": "this.btnClasses", "class.k-button-flat": "this.btnClasses", "class.k-button-flat-base": "this.btnClasses", "class.k-tabstrip-prev": "this.prevClass", "class.k-tabstrip-next": "this.nextClass" } }, ngImport: i0, template: `
3029
3034
  <span class="k-icon k-button-icon" [ngClass]="iconClass"></span>
3030
- `, isInline: true, directives: [{ type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3035
+ `, isInline: true, directives: [{ type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3031
3036
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripScrollableButtonComponent, decorators: [{
3032
3037
  type: Component,
3033
3038
  args: [{
@@ -3129,7 +3134,7 @@ TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version:
3129
3134
  >
3130
3135
  <span [ngClass]="closeButtonClasses"></span>
3131
3136
  </span>
3132
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3137
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
3133
3138
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabComponent, decorators: [{
3134
3139
  type: Component,
3135
3140
  args: [{
@@ -3290,7 +3295,7 @@ class TabStripComponent {
3290
3295
  * The event is preventable.
3291
3296
  */
3292
3297
  this.tabScroll = new EventEmitter();
3293
- this.hostClasses = true;
3298
+ this.hostClass = true;
3294
3299
  /**
3295
3300
  * A query list of all declared tabs.
3296
3301
  */
@@ -3558,7 +3563,7 @@ class TabStripComponent {
3558
3563
  }
3559
3564
  }
3560
3565
  TabStripComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripComponent, deps: [{ token: i1.LocalizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: TabStripService }, { token: ScrollService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3561
- TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: TabStripComponent, selector: "kendo-tabstrip", inputs: { height: "height", animate: "animate", tabAlignment: "tabAlignment", tabPosition: "tabPosition", keepTabContent: "keepTabContent", closable: "closable", scrollable: "scrollable", closeIcon: "closeIcon" }, outputs: { tabSelect: "tabSelect", tabClose: "tabClose", tabScroll: "tabScroll" }, host: { properties: { "class.k-tabstrip": "this.hostClasses", "class.k-floatwrap": "this.hostClasses", "class.k-tabstrip-top": "this.tabsAtTop", "class.k-tabstrip-right": "this.tabsAtRight", "class.k-tabstrip-bottom": "this.tabsAtBottom", "class.k-tabstrip-left": "this.tabsAtLeft", "attr.dir": "this.dir", "class.k-tabstrip-scrollable": "this.tabStripScrollable" } }, providers: [
3566
+ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: TabStripComponent, selector: "kendo-tabstrip", inputs: { height: "height", animate: "animate", tabAlignment: "tabAlignment", tabPosition: "tabPosition", keepTabContent: "keepTabContent", closable: "closable", scrollable: "scrollable", closeIcon: "closeIcon" }, outputs: { tabSelect: "tabSelect", tabClose: "tabClose", tabScroll: "tabScroll" }, host: { properties: { "class.k-tabstrip": "this.hostClass", "class.k-tabstrip-top": "this.tabsAtTop", "class.k-tabstrip-right": "this.tabsAtRight", "class.k-tabstrip-bottom": "this.tabsAtBottom", "class.k-tabstrip-left": "this.tabsAtLeft", "attr.dir": "this.dir", "class.k-tabstrip-scrollable": "this.tabStripScrollable" } }, providers: [
3562
3567
  TabStripService,
3563
3568
  ScrollService,
3564
3569
  LocalizationService,
@@ -3649,7 +3654,7 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
3649
3654
  </ng-template>
3650
3655
  </ng-template>
3651
3656
  <kendo-resize-sensor *ngIf="isScrollable" (resize)="onResize()"></kendo-resize-sensor>
3652
- `, isInline: true, components: [{ type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: ["prev", "tabPosition", "scrollable"], outputs: ["tabScroll", "onClick"] }, { type: TabComponent, selector: "[kendoTabStripTab]", inputs: ["tab", "index", "tabStripClosable", "tabStripCloseIcon"], outputs: ["tabClose"] }, { type: i1$1.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], directives: [{ type: LocalizedTabStripMessagesDirective, selector: "[kendoTabStripLocalizedMessages]" }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], animations: [
3657
+ `, isInline: true, components: [{ type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: ["prev", "tabPosition", "scrollable"], outputs: ["tabScroll", "onClick"] }, { type: TabComponent, selector: "[kendoTabStripTab]", inputs: ["tab", "index", "tabStripClosable", "tabStripCloseIcon"], outputs: ["tabClose"] }, { type: i1$1.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], directives: [{ type: LocalizedTabStripMessagesDirective, selector: "[kendoTabStripLocalizedMessages]" }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], animations: [
3653
3658
  trigger('state', [
3654
3659
  state('active', style({ opacity: 1 })),
3655
3660
  transition('* => active', [
@@ -3788,12 +3793,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
3788
3793
  type: Output
3789
3794
  }], tabScroll: [{
3790
3795
  type: Output
3791
- }], hostClasses: [{
3796
+ }], hostClass: [{
3792
3797
  type: HostBinding,
3793
3798
  args: ['class.k-tabstrip']
3794
- }, {
3795
- type: HostBinding,
3796
- args: ['class.k-floatwrap']
3797
3799
  }], tabsAtTop: [{
3798
3800
  type: HostBinding,
3799
3801
  args: ['class.k-tabstrip-top']
@@ -4258,7 +4260,7 @@ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
4258
4260
  <span [ngClass]="iconClasses"></span>
4259
4261
  </ng-container>
4260
4262
  </ng-template>
4261
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
4263
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
4262
4264
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DrawerItemComponent, decorators: [{
4263
4265
  type: Component,
4264
4266
  args: [{
@@ -4402,7 +4404,7 @@ class DrawerListComponent {
4402
4404
  }
4403
4405
  }
4404
4406
  DrawerListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DrawerListComponent, deps: [{ token: DrawerService }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
4405
- DrawerListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: { itemTemplate: "itemTemplate", mini: "mini", expanded: "expanded", view: "view" }, outputs: { select: "select" }, ngImport: i0, template: "\n <ng-container *ngFor=\"let v of view; trackBy:identifyItem; let idx = index\">\n <li *ngIf=\"!v.item.separator\" kendoDrawerItem\n class=\"k-drawer-item {{expanded ? ' k-level-' + v.level : ''}}\"\n [viewItem]=\"v\"\n [index]=\"idx\"\n [mini]=\"mini\"\n [expanded]=\"expanded\"\n [itemTemplate]=\"itemTemplate\"\n [attr.data-kendo-drawer-index]=\"v.index\"\n [ngClass]=\"v.item.cssClass\"\n [ngStyle]=\"v.item.cssStyle\"\n tabindex=\"0\">\n </li>\n\n <li *ngIf=\"v.item.separator\"\n class=\"k-drawer-item k-drawer-separator\"\n [ngClass]=\"v.item.cssClass\"\n [ngStyle]=\"v.item.cssStyle\">\n &nbsp;\n </li>\n </ng-container>\n ", isInline: true, components: [{ type: DrawerItemComponent, selector: "[kendoDrawerItem]", inputs: ["viewItem", "index", "itemTemplate", "mini", "expanded", "disabled", "cssClass", "cssStyle"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
4407
+ DrawerListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: { itemTemplate: "itemTemplate", mini: "mini", expanded: "expanded", view: "view" }, outputs: { select: "select" }, ngImport: i0, template: "\n <ng-container *ngFor=\"let v of view; trackBy:identifyItem; let idx = index\">\n <li *ngIf=\"!v.item.separator\" kendoDrawerItem\n class=\"k-drawer-item {{expanded ? ' k-level-' + v.level : ''}}\"\n [viewItem]=\"v\"\n [index]=\"idx\"\n [mini]=\"mini\"\n [expanded]=\"expanded\"\n [itemTemplate]=\"itemTemplate\"\n [attr.data-kendo-drawer-index]=\"v.index\"\n [ngClass]=\"v.item.cssClass\"\n [ngStyle]=\"v.item.cssStyle\"\n tabindex=\"0\">\n </li>\n\n <li *ngIf=\"v.item.separator\"\n class=\"k-drawer-item k-drawer-separator\"\n [ngClass]=\"v.item.cssClass\"\n [ngStyle]=\"v.item.cssStyle\">\n &nbsp;\n </li>\n </ng-container>\n ", isInline: true, components: [{ type: DrawerItemComponent, selector: "[kendoDrawerItem]", inputs: ["viewItem", "index", "itemTemplate", "mini", "expanded", "disabled", "cssClass", "cssStyle"] }], directives: [{ type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
4406
4408
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DrawerListComponent, decorators: [{
4407
4409
  type: Component,
4408
4410
  args: [{
@@ -4732,7 +4734,7 @@ DrawerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
4732
4734
  [ngTemplateOutlet]="drawerTemplate?.templateRef">
4733
4735
  </ng-template>
4734
4736
  </div>
4735
- `, isInline: true, components: [{ type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: ["itemTemplate", "mini", "expanded", "view"], outputs: ["select"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
4737
+ `, isInline: true, components: [{ type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: ["itemTemplate", "mini", "expanded", "view"], outputs: ["select"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
4736
4738
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DrawerComponent, decorators: [{
4737
4739
  type: Component,
4738
4740
  args: [{
@@ -4855,7 +4857,7 @@ class DrawerContainerComponent {
4855
4857
  return this.drawer.mode === 'overlay';
4856
4858
  }
4857
4859
  get miniClass() {
4858
- return this.drawer.mini;
4860
+ return this.drawer.mini && !this.drawer.expanded;
4859
4861
  }
4860
4862
  get pushClass() {
4861
4863
  return this.drawer.mode === 'push';
@@ -4895,7 +4897,7 @@ DrawerContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
4895
4897
  ], queries: [{ propertyName: "drawer", first: true, predicate: DrawerComponent, descendants: true }], ngImport: i0, template: `
4896
4898
  <div class="k-overlay" *ngIf="overlay" (click)="closeDrawer()"></div>
4897
4899
  <ng-content></ng-content>
4898
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4900
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
4899
4901
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DrawerContainerComponent, decorators: [{
4900
4902
  type: Component,
4901
4903
  args: [{
@@ -5288,7 +5290,7 @@ class StepperStepComponent {
5288
5290
  }
5289
5291
  get validationIconClasses() {
5290
5292
  if (this.isStepValid) {
5291
- return this.successIcon ? `${this.successIcon}` : 'k-icon k-i-check';
5293
+ return this.successIcon ? `${this.successIcon}` : 'k-icon k-i-check-circle';
5292
5294
  }
5293
5295
  else {
5294
5296
  return this.errorIcon ? `${this.errorIcon}` : 'k-icon k-i-exclamation-circle';
@@ -5386,7 +5388,7 @@ StepperStepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
5386
5388
  </span>
5387
5389
  </ng-container>
5388
5390
  </a>
5389
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
5391
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
5390
5392
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperStepComponent, decorators: [{
5391
5393
  type: Component,
5392
5394
  args: [{
@@ -5471,9 +5473,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
5471
5473
  * @hidden
5472
5474
  */
5473
5475
  class StepperListComponent {
5474
- constructor(renderer, ngZone, element) {
5476
+ constructor(renderer, ngZone, service, element) {
5475
5477
  this.renderer = renderer;
5476
5478
  this.ngZone = ngZone;
5479
+ this.service = service;
5477
5480
  this.element = element;
5478
5481
  this.listKeydown = new EventEmitter();
5479
5482
  this.listClick = new EventEmitter();
@@ -5492,6 +5495,9 @@ class StepperListComponent {
5492
5495
  get maxStepHeight() {
5493
5496
  return this.maxStepDimension('height');
5494
5497
  }
5498
+ get focusedStep() {
5499
+ return this.service.focusedStep;
5500
+ }
5495
5501
  maxStepDimension(dimension) {
5496
5502
  if (dimension === 'width' && this.orientation === 'vertical') {
5497
5503
  return null;
@@ -5541,8 +5547,8 @@ class StepperListComponent {
5541
5547
  }
5542
5548
  }
5543
5549
  }
5544
- StepperListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperListComponent, deps: [{ token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
5545
- StepperListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: StepperListComponent, selector: "[kendoStepperList]", inputs: { linear: "linear", stepType: "stepType", orientation: "orientation", currentStep: "currentStep", steps: "steps", successIcon: "successIcon", errorIcon: "errorIcon", indicatorTemplate: "indicatorTemplate", labelTemplate: "labelTemplate", stepTemplate: "stepTemplate" }, outputs: { listKeydown: "listKeydown", listClick: "listClick" }, ngImport: i0, template: "\n <ng-container *ngFor='let step of steps; let idx = index'>\n <li kendoStepperStep\n [attr.data-kendo-stepper-index]='idx'\n [type]='stepType'\n [step]='step'\n [index]='idx'\n [current]='currentStep'\n [successIcon]='successIcon'\n [errorIcon]='errorIcon'\n [indicatorTemplate]='indicatorTemplate'\n [labelTemplate]='labelTemplate'\n [stepTemplate]='stepTemplate'\n class='k-step'\n [class.k-step-first]='idx === 0'\n [class.k-step-last]='idx === steps.length - 1'\n [class.k-step-done]='idx < currentStep'\n [class.k-step-current]='idx === currentStep'\n [class.k-step-optional]='step.optional'\n [class.k-step-disabled]='step.disabled'\n [ngClass]='step.cssClass'\n [ngStyle]='step.cssStyle'\n [style.max-width.%] = 'maxStepWidth'\n [style.max-height.%] = 'maxStepHeight'\n >\n </li>\n </ng-container>\n ", isInline: true, components: [{ type: StepperStepComponent, selector: "[kendoStepperStep]", inputs: ["step", "index", "current", "type", "successIcon", "errorIcon", "indicatorTemplate", "labelTemplate", "stepTemplate"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
5550
+ StepperListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperListComponent, deps: [{ token: i0.Renderer2 }, { token: i0.NgZone }, { token: StepperService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
5551
+ StepperListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: StepperListComponent, selector: "[kendoStepperList]", inputs: { linear: "linear", stepType: "stepType", orientation: "orientation", currentStep: "currentStep", steps: "steps", successIcon: "successIcon", errorIcon: "errorIcon", indicatorTemplate: "indicatorTemplate", labelTemplate: "labelTemplate", stepTemplate: "stepTemplate" }, outputs: { listKeydown: "listKeydown", listClick: "listClick" }, ngImport: i0, template: "\n <ng-container *ngFor='let step of steps; let idx = index'>\n <li kendoStepperStep\n [attr.data-kendo-stepper-index]='idx'\n [type]='stepType'\n [step]='step'\n [index]='idx'\n [current]='currentStep'\n [successIcon]='successIcon'\n [errorIcon]='errorIcon'\n [indicatorTemplate]='indicatorTemplate'\n [labelTemplate]='labelTemplate'\n [stepTemplate]='stepTemplate'\n class='k-step'\n [class.k-step-first]='idx === 0'\n [class.k-step-last]='idx === steps.length - 1'\n [class.k-step-done]='idx < currentStep'\n [class.k-step-current]='idx === currentStep'\n [class.k-step-optional]='step.optional'\n [class.k-disabled]='step.disabled'\n [class.k-focus]='idx === focusedStep'\n [ngClass]='step.cssClass'\n [ngStyle]='step.cssStyle'\n [style.max-width.%] = 'maxStepWidth'\n [style.max-height.%] = 'maxStepHeight'\n >\n </li>\n </ng-container>\n ", isInline: true, components: [{ type: StepperStepComponent, selector: "[kendoStepperStep]", inputs: ["step", "index", "current", "type", "successIcon", "errorIcon", "indicatorTemplate", "labelTemplate", "stepTemplate"] }], directives: [{ type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
5546
5552
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperListComponent, decorators: [{
5547
5553
  type: Component,
5548
5554
  args: [{
@@ -5567,7 +5573,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
5567
5573
  [class.k-step-done]='idx < currentStep'
5568
5574
  [class.k-step-current]='idx === currentStep'
5569
5575
  [class.k-step-optional]='step.optional'
5570
- [class.k-step-disabled]='step.disabled'
5576
+ [class.k-disabled]='step.disabled'
5577
+ [class.k-focus]='idx === focusedStep'
5571
5578
  [ngClass]='step.cssClass'
5572
5579
  [ngStyle]='step.cssStyle'
5573
5580
  [style.max-width.%] = 'maxStepWidth'
@@ -5577,7 +5584,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
5577
5584
  </ng-container>
5578
5585
  `
5579
5586
  }]
5580
- }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ElementRef }]; }, propDecorators: { linear: [{
5587
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.NgZone }, { type: StepperService }, { type: i0.ElementRef }]; }, propDecorators: { linear: [{
5581
5588
  type: Input
5582
5589
  }], stepType: [{
5583
5590
  type: Input
@@ -5898,7 +5905,7 @@ StepperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
5898
5905
  [value]='currentStep'
5899
5906
  [ngStyle]='progressBarStyling'>
5900
5907
  </kendo-progressbar>
5901
- `, isInline: true, components: [{ type: StepperListComponent, selector: "[kendoStepperList]", inputs: ["linear", "stepType", "orientation", "currentStep", "steps", "successIcon", "errorIcon", "indicatorTemplate", "labelTemplate", "stepTemplate"], outputs: ["listKeydown", "listClick"] }, { type: i4.ProgressBarComponent, selector: "kendo-progressbar", inputs: ["label", "progressCssStyle", "progressCssClass", "emptyCssStyle", "emptyCssClass", "animation"], outputs: ["animationEnd"], exportAs: ["kendoProgressBar"] }], directives: [{ type: LocalizedStepperMessagesDirective, selector: "\n [kendoStepperLocalizedMessages]\n " }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
5908
+ `, isInline: true, components: [{ type: StepperListComponent, selector: "[kendoStepperList]", inputs: ["linear", "stepType", "orientation", "currentStep", "steps", "successIcon", "errorIcon", "indicatorTemplate", "labelTemplate", "stepTemplate"], outputs: ["listKeydown", "listClick"] }, { type: i4.ProgressBarComponent, selector: "kendo-progressbar", inputs: ["label", "progressCssStyle", "progressCssClass", "emptyCssStyle", "emptyCssClass", "animation"], outputs: ["animationEnd"], exportAs: ["kendoProgressBar"] }], directives: [{ type: LocalizedStepperMessagesDirective, selector: "\n [kendoStepperLocalizedMessages]\n " }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
5902
5909
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: StepperComponent, decorators: [{
5903
5910
  type: Component,
5904
5911
  args: [{
@@ -6278,9 +6285,11 @@ AvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
6278
6285
  </ng-container>
6279
6286
 
6280
6287
  <ng-container *ngIf="icon || iconClass">
6281
- <span class="k-avatar-icon" [ngStyle]="cssStyle" [ngClass]="iconClasses()"></span>
6288
+ <span class="k-avatar-icon">
6289
+ <span [ngStyle]="cssStyle" [ngClass]="iconClasses()"></span>
6290
+ </span>
6282
6291
  </ng-container>
6283
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
6292
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
6284
6293
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: AvatarComponent, decorators: [{
6285
6294
  type: Component,
6286
6295
  args: [{
@@ -6299,7 +6308,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
6299
6308
  </ng-container>
6300
6309
 
6301
6310
  <ng-container *ngIf="icon || iconClass">
6302
- <span class="k-avatar-icon" [ngStyle]="cssStyle" [ngClass]="iconClasses()"></span>
6311
+ <span class="k-avatar-icon">
6312
+ <span [ngStyle]="cssStyle" [ngClass]="iconClasses()"></span>
6313
+ </span>
6303
6314
  </ng-container>
6304
6315
  `
6305
6316
  }]
@@ -6600,7 +6611,7 @@ CardActionsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
6600
6611
  </ng-container>
6601
6612
 
6602
6613
  <ng-template [ngTemplateOutlet]="actionsTemplate" *ngIf="actionsTemplate"></ng-template>
6603
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
6614
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
6604
6615
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: CardActionsComponent, decorators: [{
6605
6616
  type: Component,
6606
6617
  args: [{
@@ -7134,7 +7145,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
7134
7145
  <ng-content></ng-content>
7135
7146
  </div>
7136
7147
  </div>
7137
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
7148
+ `, isInline: true, directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
7138
7149
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ExpansionPanelComponent, decorators: [{
7139
7150
  type: Component,
7140
7151
  args: [{
@@ -8039,7 +8050,7 @@ TileLayoutItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
8039
8050
  [resizeDirection]="dir">
8040
8051
  </div>
8041
8052
  </ng-container>
8042
- `, isInline: true, components: [{ type: TileLayoutItemHeaderComponent, selector: "kendo-tilelayout-item-header", inputs: ["reorderable"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: TileLayoutResizeHandleDirective, selector: "[kendoTileLayoutResizeHandle]", inputs: ["resizeDirection", "rtl"] }] });
8053
+ `, isInline: true, components: [{ type: TileLayoutItemHeaderComponent, selector: "kendo-tilelayout-item-header", inputs: ["reorderable"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: TileLayoutResizeHandleDirective, selector: "[kendoTileLayoutResizeHandle]", inputs: ["resizeDirection", "rtl"] }] });
8043
8054
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TileLayoutItemComponent, decorators: [{
8044
8055
  type: Component,
8045
8056
  args: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "7.1.2-dev.202208301247",
3
+ "version": "7.1.3-dev.202209091352",
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",
@@ -83,14 +83,12 @@ export declare class PanelBarItemComponent implements OnInit, AfterContentChecke
83
83
  titleAttribute: string;
84
84
  kItemClass: boolean;
85
85
  get kStateDefaultClass(): boolean;
86
- get kStateDisabledClass(): boolean;
87
86
  get kStateExpandedClass(): boolean;
88
87
  get itemId(): string;
89
88
  get ariaExpanded(): boolean;
90
89
  get ariaSelected(): boolean;
91
90
  get ariaDisabled(): boolean;
92
91
  get headerClass(): boolean;
93
- get childClass(): boolean;
94
92
  /**
95
93
  * @hidden
96
94
  */
@@ -35,6 +35,8 @@ export declare class SplitterBarComponent implements OnInit, OnDestroy {
35
35
  ngOnDestroy(): void;
36
36
  togglePrevious(): void;
37
37
  toggleNext(): void;
38
+ shouldShowIcon(iconName: string): boolean;
39
+ collapseClass(order: string): string;
38
40
  previousArrowClass(): string;
39
41
  nextArrowClass(): string;
40
42
  private tryToggleNearest;
@@ -5,6 +5,7 @@
5
5
  import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, Renderer2, TemplateRef } from "@angular/core";
6
6
  import { StepperOrientation } from './models/orientation';
7
7
  import { StepType } from './models/step-type';
8
+ import { StepperService } from "./stepper.service";
8
9
  import * as i0 from "@angular/core";
9
10
  /**
10
11
  * @hidden
@@ -12,6 +13,7 @@ import * as i0 from "@angular/core";
12
13
  export declare class StepperListComponent implements OnInit, OnDestroy {
13
14
  private renderer;
14
15
  private ngZone;
16
+ private service;
15
17
  element: ElementRef;
16
18
  linear: boolean;
17
19
  stepType: StepType;
@@ -26,11 +28,12 @@ export declare class StepperListComponent implements OnInit, OnDestroy {
26
28
  listKeydown: EventEmitter<any>;
27
29
  listClick: EventEmitter<any>;
28
30
  private domSubs;
29
- constructor(renderer: Renderer2, ngZone: NgZone, element: ElementRef);
31
+ constructor(renderer: Renderer2, ngZone: NgZone, service: StepperService, element: ElementRef);
30
32
  ngOnInit(): void;
31
33
  ngOnDestroy(): void;
32
34
  get maxStepWidth(): number;
33
35
  get maxStepHeight(): number;
36
+ get focusedStep(): number;
34
37
  private maxStepDimension;
35
38
  private initDomEvents;
36
39
  private clickHandler;
@@ -91,7 +91,7 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
91
91
  * The event is preventable.
92
92
  */
93
93
  tabScroll: EventEmitter<TabScrollEvent>;
94
- hostClasses: boolean;
94
+ hostClass: boolean;
95
95
  get tabsAtTop(): boolean;
96
96
  get tabsAtRight(): boolean;
97
97
  get tabsAtBottom(): boolean;