@progress/kendo-angular-layout 7.1.1 → 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.
@@ -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">
@@ -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
  /**
@@ -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: 1659509319,
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
  };
@@ -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
@@ -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
@@ -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() {
@@ -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
@@ -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: 1659509319,
29
+ publishDate: 1661863628,
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
  };
@@ -546,7 +546,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
546
546
  }"></ng-template>
547
547
  <span *ngIf="hasChildItems || hasContent"
548
548
  class="k-icon k-panelbar-toggle"
549
- [ngClass]="{'k-i-arrow-chevron-up k-panelbar-collapse': expanded, 'k-i-arrow-chevron-down k-panelbar-expand': !expanded}">
549
+ [ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
550
550
  </span>
551
551
  </span>
552
552
  <div #contentWrapper
@@ -687,7 +687,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
687
687
  }"></ng-template>
688
688
  <span *ngIf="hasChildItems || hasContent"
689
689
  class="k-icon k-panelbar-toggle"
690
- [ngClass]="{'k-i-arrow-chevron-up k-panelbar-collapse': expanded, 'k-i-arrow-chevron-down k-panelbar-expand': !expanded}">
690
+ [ngClass]="{'k-i-chevron-up k-panelbar-collapse': expanded, 'k-i-chevron-down k-panelbar-expand': !expanded}">
691
691
  </span>
692
692
  </span>
693
693
  <div #contentWrapper
@@ -2004,10 +2004,10 @@ class SplitterBarComponent {
2004
2004
  'k-icon': true,
2005
2005
  'k-hidden': !isCollapsible || nextPane.isHidden,
2006
2006
  'k-collapse-prev': isCollapsible,
2007
- 'k-i-arrow-60-left': isCollapsible && isHorizontal && !isCollapsed,
2008
- 'k-i-arrow-60-right': isCollapsible && isHorizontal && isCollapsed,
2009
- 'k-i-arrow-60-up': isCollapsible && !isHorizontal && !isCollapsed,
2010
- 'k-i-arrow-60-down': isCollapsible && !isHorizontal && isCollapsed
2007
+ 'k-i-caret-alt-left': isCollapsible && isHorizontal && !isCollapsed,
2008
+ 'k-i-caret-alt-right': isCollapsible && isHorizontal && isCollapsed,
2009
+ 'k-i-caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
2010
+ 'k-i-caret-alt-down': isCollapsible && !isHorizontal && isCollapsed
2011
2011
  });
2012
2012
  }
2013
2013
  nextArrowClass() {
@@ -2020,10 +2020,10 @@ class SplitterBarComponent {
2020
2020
  'k-icon': true,
2021
2021
  'k-hidden': !isCollapsible || prevPane.isHidden,
2022
2022
  'k-collapse-next': isCollapsible,
2023
- 'k-i-arrow-60-right': isCollapsible && isHorizontal && !isCollapsed,
2024
- 'k-i-arrow-60-left': isCollapsible && isHorizontal && isCollapsed,
2025
- 'k-i-arrow-60-down': isCollapsible && !isHorizontal && !isCollapsed,
2026
- 'k-i-arrow-60-up': isCollapsible && !isHorizontal && isCollapsed
2023
+ 'k-i-caret-alt-right': isCollapsible && isHorizontal && !isCollapsed,
2024
+ 'k-i-caret-alt-left': isCollapsible && isHorizontal && isCollapsed,
2025
+ 'k-i-caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
2026
+ 'k-i-caret-alt-up': isCollapsible && !isHorizontal && isCollapsed
2027
2027
  });
2028
2028
  }
2029
2029
  tryToggleNearest() {
@@ -2748,10 +2748,10 @@ const HIDDEN_CLASS = 'k-hidden';
2748
2748
  * @hidden
2749
2749
  */
2750
2750
  const DIRECTION_CLASSES = {
2751
- left: 'k-i-arrow-60-left',
2752
- right: 'k-i-arrow-60-right',
2753
- up: 'k-i-arrow-60-up',
2754
- down: 'k-i-arrow-60-down'
2751
+ left: 'k-i-caret-alt-left',
2752
+ right: 'k-i-caret-alt-right',
2753
+ up: 'k-i-caret-alt-up',
2754
+ down: 'k-i-caret-alt-down'
2755
2755
  };
2756
2756
  /**
2757
2757
  * @hidden
@@ -4250,8 +4250,8 @@ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
4250
4250
  <span class="k-item-text">{{ item.text }}</span>
4251
4251
  <span *ngIf="viewItem.hasChildren"
4252
4252
  class="k-icon k-drawer-toggle"
4253
- [class.k-i-arrow-chevron-up]="viewItem.isExpanded"
4254
- [class.k-i-arrow-chevron-down]="!viewItem.isExpanded"
4253
+ [class.k-i-chevron-up]="viewItem.isExpanded"
4254
+ [class.k-i-chevron-down]="!viewItem.isExpanded"
4255
4255
  ></span>
4256
4256
  </ng-container>
4257
4257
  <ng-container *ngIf="mini && !expanded">
@@ -4281,8 +4281,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
4281
4281
  <span class="k-item-text">{{ item.text }}</span>
4282
4282
  <span *ngIf="viewItem.hasChildren"
4283
4283
  class="k-icon k-drawer-toggle"
4284
- [class.k-i-arrow-chevron-up]="viewItem.isExpanded"
4285
- [class.k-i-arrow-chevron-down]="!viewItem.isExpanded"
4284
+ [class.k-i-chevron-up]="viewItem.isExpanded"
4285
+ [class.k-i-chevron-down]="!viewItem.isExpanded"
4286
4286
  ></span>
4287
4287
  </ng-container>
4288
4288
  <ng-container *ngIf="mini && !expanded">
@@ -5291,7 +5291,7 @@ class StepperStepComponent {
5291
5291
  return this.successIcon ? `${this.successIcon}` : 'k-icon k-i-check';
5292
5292
  }
5293
5293
  else {
5294
- return this.errorIcon ? `${this.errorIcon}` : 'k-icon k-i-warning';
5294
+ return this.errorIcon ? `${this.errorIcon}` : 'k-icon k-i-exclamation-circle';
5295
5295
  }
5296
5296
  }
5297
5297
  get indicatorText() {
@@ -7031,10 +7031,10 @@ class ExpansionPanelComponent {
7031
7031
  */
7032
7032
  get indicatorClasses() {
7033
7033
  if (this.expanded) {
7034
- return this.collapseIcon ? this.collapseIcon : `k-icon k-i-arrow-chevron-up`;
7034
+ return this.collapseIcon ? this.collapseIcon : `k-icon k-i-chevron-up`;
7035
7035
  }
7036
7036
  else {
7037
- return this.expandIcon ? this.expandIcon : `k-icon k-i-arrow-chevron-down`;
7037
+ return this.expandIcon ? this.expandIcon : `k-icon k-i-chevron-down`;
7038
7038
  }
7039
7039
  }
7040
7040
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "7.1.1",
3
+ "version": "7.1.2-dev.202208301247",
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",