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

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/drawer/util.d.ts CHANGED
@@ -9,7 +9,7 @@ export declare const DRAWER_LINK_SELECTOR = ".k-drawer-link";
9
9
  /**
10
10
  * @hidden
11
11
  */
12
- export declare const ACTIVE_NESTED_LINK_SELECTOR = ":focus:not(.k-state-disabled) .k-drawer-link";
12
+ export declare const ACTIVE_NESTED_LINK_SELECTOR = ":focus:not(.k-disabled) .k-drawer-link";
13
13
  /**
14
14
  * @hidden
15
15
  */
@@ -47,7 +47,7 @@ export class DrawerItemComponent {
47
47
  }
48
48
  }
49
49
  DrawerItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: DrawerItemComponent, deps: [{ token: i1.DrawerService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
50
- DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: DrawerItemComponent, selector: "[kendoDrawerItem]", inputs: { viewItem: "viewItem", index: "index", itemTemplate: "itemTemplate", mini: "mini", expanded: "expanded", disabled: "disabled", cssClass: "cssClass", cssStyle: "cssStyle" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-state-disabled": "this.disabledClass", "attr.aria-current": "this.selectedClass", "class.k-state-selected": "this.selectedClass", "attr.aria-label": "this.label" } }, ngImport: i0, template: `
50
+ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: DrawerItemComponent, selector: "[kendoDrawerItem]", inputs: { viewItem: "viewItem", index: "index", itemTemplate: "itemTemplate", mini: "mini", expanded: "expanded", disabled: "disabled", cssClass: "cssClass", cssStyle: "cssStyle" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "attr.aria-current": "this.selectedClass", "class.k-selected": "this.selectedClass", "attr.aria-label": "this.label" } }, ngImport: i0, template: `
51
51
  <ng-template *ngIf="itemTemplate; else defaultTemplate"
52
52
  [ngTemplateOutlet]="itemTemplate"
53
53
  [ngTemplateOutletContext]="{
@@ -64,8 +64,8 @@ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
64
64
  <span class="k-item-text">{{ item.text }}</span>
65
65
  <span *ngIf="viewItem.hasChildren"
66
66
  class="k-icon k-drawer-toggle"
67
- [class.k-i-arrow-chevron-up]="viewItem.isExpanded"
68
- [class.k-i-arrow-chevron-down]="!viewItem.isExpanded"
67
+ [class.k-i-chevron-up]="viewItem.isExpanded"
68
+ [class.k-i-chevron-down]="!viewItem.isExpanded"
69
69
  ></span>
70
70
  </ng-container>
71
71
  <ng-container *ngIf="mini && !expanded">
@@ -95,8 +95,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
95
95
  <span class="k-item-text">{{ item.text }}</span>
96
96
  <span *ngIf="viewItem.hasChildren"
97
97
  class="k-icon k-drawer-toggle"
98
- [class.k-i-arrow-chevron-up]="viewItem.isExpanded"
99
- [class.k-i-arrow-chevron-down]="!viewItem.isExpanded"
98
+ [class.k-i-chevron-up]="viewItem.isExpanded"
99
+ [class.k-i-chevron-down]="!viewItem.isExpanded"
100
100
  ></span>
101
101
  </ng-container>
102
102
  <ng-container *ngIf="mini && !expanded">
@@ -126,13 +126,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
126
126
  args: ['attr.aria-disabled']
127
127
  }, {
128
128
  type: HostBinding,
129
- args: ['class.k-state-disabled']
129
+ args: ['class.k-disabled']
130
130
  }], selectedClass: [{
131
131
  type: HostBinding,
132
132
  args: ['attr.aria-current']
133
133
  }, {
134
134
  type: HostBinding,
135
- args: ['class.k-state-selected']
135
+ args: ['class.k-selected']
136
136
  }], label: [{
137
137
  type: HostBinding,
138
138
  args: ['attr.aria-label']
@@ -9,7 +9,7 @@ export const DRAWER_LINK_SELECTOR = '.k-drawer-link';
9
9
  /**
10
10
  * @hidden
11
11
  */
12
- export const ACTIVE_NESTED_LINK_SELECTOR = ':focus:not(.k-state-disabled) .k-drawer-link';
12
+ export const ACTIVE_NESTED_LINK_SELECTOR = ':focus:not(.k-disabled) .k-drawer-link';
13
13
  /**
14
14
  * @hidden
15
15
  */
@@ -228,10 +228,10 @@ export class ExpansionPanelComponent {
228
228
  */
229
229
  get indicatorClasses() {
230
230
  if (this.expanded) {
231
- return this.collapseIcon ? this.collapseIcon : `k-icon k-i-arrow-chevron-up`;
231
+ return this.collapseIcon ? this.collapseIcon : `k-icon k-i-chevron-up`;
232
232
  }
233
233
  else {
234
- return this.expandIcon ? this.expandIcon : `k-icon k-i-arrow-chevron-down`;
234
+ return this.expandIcon ? this.expandIcon : `k-icon k-i-chevron-down`;
235
235
  }
236
236
  }
237
237
  /**
@@ -299,7 +299,7 @@ export class ExpansionPanelComponent {
299
299
  }
300
300
  }
301
301
  ExpansionPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ExpansionPanelComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i1.LocalizationService }, { token: i2.AnimationBuilder }], target: i0.ɵɵFactoryTarget.Component });
302
- ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: { title: "title", subtitle: "subtitle", disabled: "disabled", expanded: "expanded", expandIcon: "expandIcon", collapseIcon: "collapseIcon", animation: "animation" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse" }, host: { listeners: { "blur": "onComponentBlur()", "focus": "onComponentFocus()" }, properties: { "class.k-expander": "this.hostClass", "class.k-expanded": "this.expandedClass", "class.k-state-focus": "this.focusClass", "attr.aria-disabled": "this.disabledClass", "class.k-state-disabled": "this.disabledClass", "attr.dir": "this.direction", "attr.tabindex": "this.tabindex" } }, providers: [
302
+ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ExpansionPanelComponent, selector: "kendo-expansionpanel", inputs: { title: "title", subtitle: "subtitle", disabled: "disabled", expanded: "expanded", expandIcon: "expandIcon", collapseIcon: "collapseIcon", animation: "animation" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse" }, host: { listeners: { "blur": "onComponentBlur()", "focus": "onComponentFocus()" }, properties: { "class.k-expander": "this.hostClass", "class.k-expanded": "this.expandedClass", "class.k-focus": "this.focusClass", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "attr.dir": "this.direction", "attr.tabindex": "this.tabindex" } }, providers: [
303
303
  LocalizationService,
304
304
  {
305
305
  provide: L10N_PREFIX,
@@ -408,13 +408,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
408
408
  args: ['class.k-expanded']
409
409
  }], focusClass: [{
410
410
  type: HostBinding,
411
- args: ['class.k-state-focus']
411
+ args: ['class.k-focus']
412
412
  }], disabledClass: [{
413
413
  type: HostBinding,
414
414
  args: ['attr.aria-disabled']
415
415
  }, {
416
416
  type: HostBinding,
417
- args: ['class.k-state-disabled']
417
+ args: ['class.k-disabled']
418
418
  }], direction: [{
419
419
  type: HostBinding,
420
420
  args: ['attr.dir']
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-layout',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1655110279,
12
+ publishDate: 1661863628,
13
13
  version: '',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
15
15
  };
@@ -244,12 +244,12 @@ export class PanelBarItemComponent {
244
244
  }
245
245
  }
246
246
  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: i1.PanelBarService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
247
- 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-state-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: `
247
+ 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: `
248
248
  <span
249
249
  #header
250
250
  [class.k-link]="true"
251
- [class.k-state-selected]="!disabled && selected"
252
- [class.k-state-focused]="focused && wrapperFocused"
251
+ [class.k-selected]="!disabled && selected"
252
+ [class.k-focus]="focused && wrapperFocused"
253
253
  (click)="onItemClick($event)">
254
254
  <span
255
255
  *ngIf="icon || iconClass"
@@ -280,7 +280,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
280
280
  }"></ng-template>
281
281
  <span *ngIf="hasChildItems || hasContent"
282
282
  class="k-icon k-panelbar-toggle"
283
- [ngClass]="{'k-i-arrow-chevron-up k-panelbar-collapse': expanded, 'k-i-arrow-chevron-down k-panelbar-expand': !expanded}">
283
+ [ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
284
284
  </span>
285
285
  </span>
286
286
  <div #contentWrapper
@@ -389,8 +389,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
389
389
  <span
390
390
  #header
391
391
  [class.k-link]="true"
392
- [class.k-state-selected]="!disabled && selected"
393
- [class.k-state-focused]="focused && wrapperFocused"
392
+ [class.k-selected]="!disabled && selected"
393
+ [class.k-focus]="focused && wrapperFocused"
394
394
  (click)="onItemClick($event)">
395
395
  <span
396
396
  *ngIf="icon || iconClass"
@@ -421,7 +421,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
421
421
  }"></ng-template>
422
422
  <span *ngIf="hasChildItems || hasContent"
423
423
  class="k-icon k-panelbar-toggle"
424
- [ngClass]="{'k-i-arrow-chevron-up k-panelbar-collapse': expanded, 'k-i-arrow-chevron-down k-panelbar-expand': !expanded}">
424
+ [ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
425
425
  </span>
426
426
  </span>
427
427
  <div #contentWrapper
@@ -545,7 +545,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
545
545
  args: ['class.k-state-default']
546
546
  }], kStateDisabledClass: [{
547
547
  type: HostBinding,
548
- args: ['class.k-state-disabled']
548
+ args: ['class.k-disabled']
549
549
  }], kStateExpandedClass: [{
550
550
  type: HostBinding,
551
551
  args: ['class.k-state-expanded']
@@ -49,7 +49,7 @@ export class SplitterBarComponent {
49
49
  const isDraggable = this.splitter.isDraggable(this.index);
50
50
  const isStatic = this.splitter.isStatic(this.index);
51
51
  return classFromObject({
52
- 'k-state-focused': this.focused,
52
+ 'k-focus': this.focused,
53
53
  'k-splitbar': true,
54
54
  'k-splitbar-horizontal': isHorizontal,
55
55
  'k-splitbar-vertical': !isHorizontal,
@@ -145,10 +145,10 @@ export class SplitterBarComponent {
145
145
  'k-icon': true,
146
146
  'k-hidden': !isCollapsible || nextPane.isHidden,
147
147
  'k-collapse-prev': isCollapsible,
148
- 'k-i-arrow-60-left': isCollapsible && isHorizontal && !isCollapsed,
149
- 'k-i-arrow-60-right': isCollapsible && isHorizontal && isCollapsed,
150
- 'k-i-arrow-60-up': isCollapsible && !isHorizontal && !isCollapsed,
151
- 'k-i-arrow-60-down': isCollapsible && !isHorizontal && isCollapsed
148
+ 'k-i-caret-alt-left': isCollapsible && isHorizontal && !isCollapsed,
149
+ 'k-i-caret-alt-right': isCollapsible && isHorizontal && isCollapsed,
150
+ 'k-i-caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
151
+ 'k-i-caret-alt-down': isCollapsible && !isHorizontal && isCollapsed
152
152
  });
153
153
  }
154
154
  nextArrowClass() {
@@ -161,10 +161,10 @@ export class SplitterBarComponent {
161
161
  'k-icon': true,
162
162
  'k-hidden': !isCollapsible || prevPane.isHidden,
163
163
  'k-collapse-next': isCollapsible,
164
- 'k-i-arrow-60-right': isCollapsible && isHorizontal && !isCollapsed,
165
- 'k-i-arrow-60-left': isCollapsible && isHorizontal && isCollapsed,
166
- 'k-i-arrow-60-down': isCollapsible && !isHorizontal && !isCollapsed,
167
- 'k-i-arrow-60-up': isCollapsible && !isHorizontal && isCollapsed
164
+ 'k-i-caret-alt-right': isCollapsible && isHorizontal && !isCollapsed,
165
+ 'k-i-caret-alt-left': isCollapsible && isHorizontal && isCollapsed,
166
+ 'k-i-caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
167
+ 'k-i-caret-alt-up': isCollapsible && !isHorizontal && isCollapsed
168
168
  });
169
169
  }
170
170
  tryToggleNearest() {
@@ -176,7 +176,7 @@ export class SplitterBarComponent {
176
176
  }
177
177
  }
178
178
  SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1.DraggableDirective, host: true }, { token: i0.ElementRef }, { token: i2.SplitterService }, { token: i3.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
179
- 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-state-focused": "this.focused", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
179
+ 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: `
180
180
  <div [class]="previousArrowClass()" (click)="togglePrevious()"></div>
181
181
  <div class="k-resize-handle"></div>
182
182
  <div [class]="nextArrowClass()" (click)="toggleNext()"></div>
@@ -205,7 +205,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
205
205
  args: ['attr.role']
206
206
  }], focused: [{
207
207
  type: HostBinding,
208
- args: ['class.k-state-focused']
208
+ args: ['class.k-focus']
209
209
  }], tabIndex: [{
210
210
  type: HostBinding,
211
211
  args: ['attr.tabindex']
@@ -106,7 +106,7 @@ export class StepperStepComponent {
106
106
  return this.successIcon ? `${this.successIcon}` : 'k-icon k-i-check';
107
107
  }
108
108
  else {
109
- return this.errorIcon ? `${this.errorIcon}` : 'k-icon k-i-warning';
109
+ return this.errorIcon ? `${this.errorIcon}` : 'k-icon k-i-exclamation-circle';
110
110
  }
111
111
  }
112
112
  get indicatorText() {
@@ -22,10 +22,10 @@ export const HIDDEN_CLASS = 'k-hidden';
22
22
  * @hidden
23
23
  */
24
24
  export const DIRECTION_CLASSES = {
25
- left: 'k-i-arrow-60-left',
26
- right: 'k-i-arrow-60-right',
27
- up: 'k-i-arrow-60-up',
28
- down: 'k-i-arrow-60-down'
25
+ left: 'k-i-caret-alt-left',
26
+ right: 'k-i-caret-alt-right',
27
+ up: 'k-i-caret-alt-up',
28
+ down: 'k-i-caret-alt-down'
29
29
  };
30
30
  /**
31
31
  * @hidden
@@ -50,7 +50,7 @@ export class TabComponent {
50
50
  }
51
51
  }
52
52
  TabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
53
- TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: TabComponent, selector: "[kendoTabStripTab]", inputs: { tab: "tab", index: "index", tabStripClosable: "tabStripClosable", tabStripCloseIcon: "tabStripCloseIcon" }, outputs: { tabClose: "tabClose" }, host: { properties: { "class.k-item": "this.hostClasses", "class.k-state-default": "this.hostClasses", "attr.aria-selected]": "this.activeClass", "class.k-state-active": "this.activeClass", "attr.aria-disabled]": "this.disabledClass", "class.k-state-disabled": "this.disabledClass", "class.k-state-focused": "this.focusedClass", "attr.tabindex": "this.tabIndex" } }, ngImport: i0, template: `
53
+ TabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: TabComponent, selector: "[kendoTabStripTab]", inputs: { tab: "tab", index: "index", tabStripClosable: "tabStripClosable", tabStripCloseIcon: "tabStripCloseIcon" }, outputs: { tabClose: "tabClose" }, host: { properties: { "class.k-item": "this.hostClasses", "class.k-state-default": "this.hostClasses", "attr.aria-selected]": "this.activeClass", "class.k-active": "this.activeClass", "attr.aria-disabled]": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-focus": "this.focusedClass", "attr.tabindex": "this.tabIndex" } }, ngImport: i0, template: `
54
54
  <span class="k-link" *ngIf="!tab.tabTitle">{{ tab.title }}</span>
55
55
  <span class="k-link" *ngIf="tab.tabTitle">
56
56
  <ng-template [ngTemplateOutlet]="tab.tabTitle?.templateRef">
@@ -107,16 +107,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
107
107
  args: ['attr.aria-selected]']
108
108
  }, {
109
109
  type: HostBinding,
110
- args: ['class.k-state-active']
110
+ args: ['class.k-active']
111
111
  }], disabledClass: [{
112
112
  type: HostBinding,
113
113
  args: ['attr.aria-disabled]']
114
114
  }, {
115
115
  type: HostBinding,
116
- args: ['class.k-state-disabled']
116
+ args: ['class.k-disabled']
117
117
  }], focusedClass: [{
118
118
  type: HostBinding,
119
- args: ['class.k-state-focused']
119
+ args: ['class.k-focus']
120
120
  }], tabIndex: [{
121
121
  type: HostBinding,
122
122
  args: ['attr.tabindex']
@@ -427,7 +427,7 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
427
427
  <div
428
428
  [@state]="tab.selected && animate ? 'active' : 'inactive'"
429
429
  *ngIf="tab.selected || keepTabContent"
430
- [ngClass]="!this.keepTabContent || tab.selected ? 'k-content k-state-active' : 'k-content'"
430
+ [ngClass]="!this.keepTabContent || tab.selected ? 'k-content k-active' : 'k-content'"
431
431
  [tabIndex]="0"
432
432
  role="tabpanel"
433
433
  [id]="'k-tabstrip-tabpanel-' + i"
@@ -542,7 +542,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
542
542
  <div
543
543
  [@state]="tab.selected && animate ? 'active' : 'inactive'"
544
544
  *ngIf="tab.selected || keepTabContent"
545
- [ngClass]="!this.keepTabContent || tab.selected ? 'k-content k-state-active' : 'k-content'"
545
+ [ngClass]="!this.keepTabContent || tab.selected ? 'k-content k-active' : 'k-content'"
546
546
  [tabIndex]="0"
547
547
  role="tabpanel"
548
548
  [id]="'k-tabstrip-tabpanel-' + i"
@@ -70,12 +70,12 @@ export class TileLayoutComponent {
70
70
  */
71
71
  this.autoFlow = 'column';
72
72
  /**
73
- * Fires when the user completes the reordering of the item ([see example]({% slug overview_tilelayout %}#toc-events)).
73
+ * Fires when the user completes the reordering of the item ([see example]({% slug reordering_tilelayout %})).
74
74
  * This event is preventable. If you cancel it, the item will not be reordered.
75
75
  */
76
76
  this.reorder = new EventEmitter();
77
77
  /**
78
- * Fires when the user completes the resizing of the item ([see example]({% slug overview_tilelayout %}#toc-events)).
78
+ * Fires when the user completes the resizing of the item ([see example]({% slug resizing_tilelayout %})).
79
79
  * This event is preventable. If you cancel it, the item will not be resized.
80
80
  */
81
81
  this.resize = new EventEmitter();