@progress/kendo-angular-layout 13.0.0-develop.2 → 13.0.0-develop.20

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.
@@ -276,7 +276,7 @@ AvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
276
276
  </kendo-icon-wrapper>
277
277
  </span>
278
278
  </ng-container>
279
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.LocalizedAvatarMessagesDirective, selector: "[kendoAvatarLocalizedMessages]" }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
279
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.LocalizedAvatarMessagesDirective, selector: "[kendoAvatarLocalizedMessages]" }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
280
280
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AvatarComponent, decorators: [{
281
281
  type: Component,
282
282
  args: [{
@@ -101,7 +101,7 @@ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
101
101
  </kendo-icon-wrapper>
102
102
  </ng-container>
103
103
  </ng-template>
104
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
104
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
105
105
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DrawerItemComponent, decorators: [{
106
106
  type: Component,
107
107
  args: [{
@@ -15,6 +15,7 @@ import { validatePackage } from '@progress/kendo-licensing';
15
15
  import { packageMetadata } from '../package-metadata';
16
16
  import { ExpansionPanelActionEvent } from './events/action-event';
17
17
  import { take } from 'rxjs/operators';
18
+ import { caretAltDownIcon, caretAltUpIcon } from '@progress/kendo-svg-icons';
18
19
  import * as i0 from "@angular/core";
19
20
  import * as i1 from "@progress/kendo-angular-l10n";
20
21
  import * as i2 from "@angular/animations";
@@ -102,6 +103,8 @@ export class ExpansionPanelComponent {
102
103
  this.animationEnd = new EventEmitter();
103
104
  this.subscriptions = new Subscription();
104
105
  this._expanded = false;
106
+ this._svgExpandIcon = caretAltDownIcon;
107
+ this._svgCollapseIcon = caretAltUpIcon;
105
108
  validatePackage(packageMetadata);
106
109
  this.direction = localizationService.rtl ? 'rtl' : 'ltr';
107
110
  }
@@ -257,13 +260,8 @@ export class ExpansionPanelComponent {
257
260
  /**
258
261
  * @hidden
259
262
  */
260
- get svgExpanderIndicatorClasses() {
261
- if (this.expanded) {
262
- return this.svgCollapseIcon ? this.svgCollapseIcon : undefined;
263
- }
264
- else {
265
- return this.svgExpandIcon ? this.svgExpandIcon : undefined;
266
- }
263
+ get expanderSvgIcon() {
264
+ return this.expanded ? this.svgCollapseIcon : this.svgExpandIcon;
267
265
  }
268
266
  /**
269
267
  * Toggles the visibility of the ExpansionPanel
@@ -375,7 +373,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
375
373
  <kendo-icon-wrapper
376
374
  [name]="expanderIndicatorClasses"
377
375
  [customFontClass]="customExpanderIndicatorClasses"
378
- [svgIcon]="svgExpanderIndicatorClasses"
376
+ [svgIcon]="expanderSvgIcon"
379
377
  >
380
378
  </kendo-icon-wrapper>
381
379
  </span>
@@ -385,7 +383,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
385
383
  <ng-content></ng-content>
386
384
  </div>
387
385
  </div>
388
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
386
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
389
387
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ExpansionPanelComponent, decorators: [{
390
388
  type: Component,
391
389
  args: [{
@@ -425,7 +423,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
425
423
  <kendo-icon-wrapper
426
424
  [name]="expanderIndicatorClasses"
427
425
  [customFontClass]="customExpanderIndicatorClasses"
428
- [svgIcon]="svgExpanderIndicatorClasses"
426
+ [svgIcon]="expanderSvgIcon"
429
427
  >
430
428
  </kendo-icon-wrapper>
431
429
  </span>
@@ -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: 1684846614,
13
- version: '13.0.0-develop.2',
12
+ publishDate: 1685961101,
13
+ version: '13.0.0-develop.20',
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
  };
@@ -11,7 +11,7 @@ import { PanelBarItemTitleDirective } from "./panelbar-item-title.directive";
11
11
  import { isFocusable } from '../common/dom-queries';
12
12
  import { Subscription } from 'rxjs';
13
13
  import { PanelBarExpandMode } from './panelbar-expand-mode';
14
- import { arrowDownIcon, arrowUpIcon } from '@progress/kendo-svg-icons';
14
+ import { chevronDownIcon, chevronUpIcon } from '@progress/kendo-svg-icons';
15
15
  import * as i0 from "@angular/core";
16
16
  import * as i1 from "./panelbar.service";
17
17
  import * as i2 from "@progress/kendo-angular-icons";
@@ -64,14 +64,6 @@ export class PanelBarItemComponent {
64
64
  this.role = "treeitem";
65
65
  this.titleAttribute = null; // eslint-disable-line
66
66
  this.kItemClass = true;
67
- /**
68
- * @hidden
69
- */
70
- this.arrowUpSVGIcon = arrowUpIcon;
71
- /**
72
- * @hidden
73
- */
74
- this.arrowDownSVGIcon = arrowDownIcon;
75
67
  this.focused = false;
76
68
  this.wrapperFocused = false;
77
69
  this.subscriptions = new Subscription(() => { });
@@ -207,8 +199,8 @@ export class PanelBarItemComponent {
207
199
  /**
208
200
  * @hidden
209
201
  */
210
- get arrowSVGIcon() {
211
- return this.expanded ? this.arrowUpSVGIcon : this.arrowDownSVGIcon;
202
+ get expanderSVGIcon() {
203
+ return this.expanded ? chevronUpIcon : chevronDownIcon;
212
204
  }
213
205
  /**
214
206
  * @hidden
@@ -326,7 +318,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
326
318
  <kendo-icon-wrapper
327
319
  *ngIf="hasChildItems || hasContent"
328
320
  [name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
329
- [svgIcon]="arrowSVGIcon"
321
+ [svgIcon]="expanderSVGIcon"
330
322
  [innerCssClass]="dirInnerCssClasses"
331
323
  >
332
324
  </kendo-icon-wrapper>
@@ -406,7 +398,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
406
398
  </ng-template>
407
399
  <ng-template [ngIf]="!template">{{content}}</ng-template>
408
400
  </div>
409
- </div>`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
401
+ </div>`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
410
402
  trigger('toggle', [
411
403
  state('inactive', style({ display: 'none' })),
412
404
  transition('* => active', [
@@ -479,7 +471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
479
471
  <kendo-icon-wrapper
480
472
  *ngIf="hasChildItems || hasContent"
481
473
  [name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
482
- [svgIcon]="arrowSVGIcon"
474
+ [svgIcon]="expanderSVGIcon"
483
475
  [innerCssClass]="dirInnerCssClasses"
484
476
  >
485
477
  </kendo-icon-wrapper>
@@ -126,9 +126,10 @@ export class SplitterBarComponent {
126
126
  const isCollapsible = pane.collapsible;
127
127
  const isCollapsed = pane.collapsed;
128
128
  const isHorizontal = this.orientation === 'horizontal';
129
+ const isRTL = this.direction === 'rtl';
129
130
  return classFromObject({
130
- 'caret-alt-left': isCollapsible && isHorizontal && !isCollapsed,
131
- 'caret-alt-right': isCollapsible && isHorizontal && isCollapsed,
131
+ 'caret-alt-left': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
132
+ 'caret-alt-right': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
132
133
  'caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
133
134
  'caret-alt-down': isCollapsible && !isHorizontal && isCollapsed
134
135
  });
@@ -138,10 +139,11 @@ export class SplitterBarComponent {
138
139
  const isCollapsible = pane.collapsible;
139
140
  const isCollapsed = pane.collapsed;
140
141
  const isHorizontal = this.orientation === 'horizontal';
141
- if (isCollapsible && isHorizontal && !isCollapsed) {
142
+ const isRTL = this.direction === 'rtl';
143
+ if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
142
144
  return caretAltLeftIcon;
143
145
  }
144
- if (isCollapsible && isHorizontal && isCollapsed) {
146
+ if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
145
147
  return caretAltRightIcon;
146
148
  }
147
149
  if (isCollapsible && !isHorizontal && !isCollapsed) {
@@ -156,9 +158,10 @@ export class SplitterBarComponent {
156
158
  const isCollapsible = pane.collapsible;
157
159
  const isCollapsed = pane.collapsed;
158
160
  const isHorizontal = this.orientation === 'horizontal';
161
+ const isRTL = this.direction === 'rtl';
159
162
  return classFromObject({
160
- 'caret-alt-right': isCollapsible && isHorizontal && !isCollapsed,
161
- 'caret-alt-left': isCollapsible && isHorizontal && isCollapsed,
163
+ 'caret-alt-right': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
164
+ 'caret-alt-left': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
162
165
  'caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
163
166
  'caret-alt-up': isCollapsible && !isHorizontal && isCollapsed
164
167
  });
@@ -168,10 +171,11 @@ export class SplitterBarComponent {
168
171
  const isCollapsible = pane.collapsible;
169
172
  const isCollapsed = pane.collapsed;
170
173
  const isHorizontal = this.orientation === 'horizontal';
171
- if (isCollapsible && isHorizontal && !isCollapsed) {
174
+ const isRTL = this.direction === 'rtl';
175
+ if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
172
176
  return caretAltRightIcon;
173
177
  }
174
- if (isCollapsible && isHorizontal && isCollapsed) {
178
+ if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
175
179
  return caretAltLeftIcon;
176
180
  }
177
181
  if (isCollapsible && !isHorizontal && !isCollapsed) {
@@ -221,24 +225,40 @@ export class SplitterBarComponent {
221
225
  SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1.DraggableDirective, host: true }, { token: i2.LocalizationService }, { token: i3.SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
222
226
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SplitterBarComponent, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.aria-orientation": "this.hostOrientation", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
223
227
  <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
224
- <kendo-icon-wrapper [name]="previousArrowClass()" [svgIcon]="previousSVGArrowClass()"></kendo-icon-wrapper>
228
+ <kendo-icon-wrapper
229
+ size="xsmall"
230
+ [name]="previousArrowClass()"
231
+ [svgIcon]="previousSVGArrowClass()"
232
+ ></kendo-icon-wrapper>
225
233
  </div>
226
234
  <div class="k-resize-handle"></div>
227
235
  <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
228
- <kendo-icon-wrapper [name]="nextArrowClass()" [svgIcon]="nextSVGArrowClass()"></kendo-icon-wrapper>
236
+ <kendo-icon-wrapper
237
+ size="xsmall"
238
+ [name]="nextArrowClass()"
239
+ [svgIcon]="nextSVGArrowClass()"
240
+ ></kendo-icon-wrapper>
229
241
  </div>
230
- `, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
242
+ `, isInline: true, components: [{ type: i4.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
231
243
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SplitterBarComponent, decorators: [{
232
244
  type: Component,
233
245
  args: [{
234
246
  selector: 'kendo-splitter-bar',
235
247
  template: `
236
248
  <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
237
- <kendo-icon-wrapper [name]="previousArrowClass()" [svgIcon]="previousSVGArrowClass()"></kendo-icon-wrapper>
249
+ <kendo-icon-wrapper
250
+ size="xsmall"
251
+ [name]="previousArrowClass()"
252
+ [svgIcon]="previousSVGArrowClass()"
253
+ ></kendo-icon-wrapper>
238
254
  </div>
239
255
  <div class="k-resize-handle"></div>
240
256
  <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
241
- <kendo-icon-wrapper [name]="nextArrowClass()" [svgIcon]="nextSVGArrowClass()"></kendo-icon-wrapper>
257
+ <kendo-icon-wrapper
258
+ size="xsmall"
259
+ [name]="nextArrowClass()"
260
+ [svgIcon]="nextSVGArrowClass()"
261
+ ></kendo-icon-wrapper>
242
262
  </div>
243
263
  `
244
264
  }]
@@ -245,7 +245,7 @@ StepperStepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
245
245
  </span>
246
246
  </ng-container>
247
247
  </a>
248
- `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
248
+ `, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
249
249
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StepperStepComponent, decorators: [{
250
250
  type: Component,
251
251
  args: [{
@@ -8,19 +8,27 @@ import { Subscription } from 'rxjs';
8
8
  import { DIRECTION_CLASSES, HIDDEN_CLASS } from './constants';
9
9
  import { isTablistHorizontal } from './util';
10
10
  import { TabScrollEvent } from './events/tabscroll-event';
11
+ import { caretAltDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon } from '@progress/kendo-svg-icons';
12
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
11
13
  import * as i0 from "@angular/core";
12
- import * as i1 from "@progress/kendo-angular-icons";
14
+ import * as i1 from "@progress/kendo-angular-l10n";
15
+ import * as i2 from "@progress/kendo-angular-icons";
13
16
  /**
14
17
  * @hidden
15
18
  */
16
19
  export class TabStripScrollableButtonComponent {
17
- constructor(host, renderer, ngZone) {
20
+ constructor(host, renderer, ngZone, localization) {
18
21
  this.host = host;
19
22
  this.renderer = renderer;
20
23
  this.ngZone = ngZone;
24
+ this.localization = localization;
21
25
  this.prev = false;
22
26
  this.tabScroll = new EventEmitter();
23
27
  this.onClick = new EventEmitter();
28
+ this.caretAltLeftIcon = caretAltLeftIcon;
29
+ this.caretAltRightIcon = caretAltRightIcon;
30
+ this.caretAltUpIcon = caretAltUpIcon;
31
+ this.caretAltDownIcon = caretAltDownIcon;
24
32
  this.subs = new Subscription();
25
33
  this.clickHandler = (scrollEvent) => {
26
34
  const tabStripScrollEvent = this.emitScrollEvent(scrollEvent);
@@ -62,8 +70,16 @@ export class TabStripScrollableButtonComponent {
62
70
  this.renderer[show ? 'removeClass' : 'addClass'](this.host.nativeElement, HIDDEN_CLASS);
63
71
  }
64
72
  get scrollButtonIconClass() {
65
- const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ? DIRECTION_CLASSES.left : DIRECTION_CLASSES.up;
66
- const defaultNextIcon = isTablistHorizontal(this.tabPosition) ? DIRECTION_CLASSES.right : DIRECTION_CLASSES.down;
73
+ const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ?
74
+ !this.localization.rtl ?
75
+ DIRECTION_CLASSES.left :
76
+ DIRECTION_CLASSES.right :
77
+ DIRECTION_CLASSES.up;
78
+ const defaultNextIcon = isTablistHorizontal(this.tabPosition) ?
79
+ !this.localization.rtl ?
80
+ DIRECTION_CLASSES.right :
81
+ DIRECTION_CLASSES.left :
82
+ DIRECTION_CLASSES.down;
67
83
  if (typeof this.scrollable === 'object') {
68
84
  const prevIcon = typeof this.scrollable.prevButtonIcon === 'undefined' ? defaultPrevIcon : '';
69
85
  const nextIcon = typeof this.scrollable.nextButtonIcon === 'undefined' ? defaultNextIcon : '';
@@ -88,9 +104,19 @@ export class TabStripScrollableButtonComponent {
88
104
  }
89
105
  }
90
106
  get scrollButtonSVGIcon() {
107
+ const defaultPrevSVGIcon = isTablistHorizontal(this.tabPosition) ?
108
+ !this.localization.rtl ?
109
+ this.caretAltLeftIcon :
110
+ this.caretAltRightIcon :
111
+ this.caretAltUpIcon;
112
+ const defaultNextSVGIcon = isTablistHorizontal(this.tabPosition) ?
113
+ !this.localization.rtl ?
114
+ this.caretAltRightIcon :
115
+ this.caretAltLeftIcon :
116
+ this.caretAltDownIcon;
91
117
  if (typeof this.scrollable === 'object') {
92
- const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : undefined;
93
- const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : undefined;
118
+ const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : defaultPrevSVGIcon;
119
+ const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : defaultNextSVGIcon;
94
120
  if (prevIcon || nextIcon) {
95
121
  return this.prev ? prevIcon : nextIcon;
96
122
  }
@@ -104,7 +130,7 @@ export class TabStripScrollableButtonComponent {
104
130
  return scrollEvent;
105
131
  }
106
132
  }
107
- TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
133
+ TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
108
134
  TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: { prev: "prev", tabPosition: "tabPosition", scrollable: "scrollable" }, outputs: { tabScroll: "tabScroll", onClick: "onClick" }, host: { properties: { "class.k-tabstrip-prev": "this.prevClass", "class.k-tabstrip-next": "this.nextClass" } }, ngImport: i0, template: `
109
135
  <kendo-icon-wrapper
110
136
  [name]="iconClass"
@@ -113,7 +139,7 @@ TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
113
139
  innerCssClass="k-button-icon"
114
140
  >
115
141
  </kendo-icon-wrapper>
116
- `, isInline: true, components: [{ type: i1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }] });
142
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
117
143
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, decorators: [{
118
144
  type: Component,
119
145
  args: [{
@@ -129,7 +155,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
129
155
  // eslint-disable-next-line @angular-eslint/component-selector
130
156
  selector: '[kendoTabStripScrollableButton]'
131
157
  }]
132
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { prevClass: [{
158
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1.LocalizationService }]; }, propDecorators: { prevClass: [{
133
159
  type: HostBinding,
134
160
  args: ['class.k-tabstrip-prev']
135
161
  }], nextClass: [{
@@ -159,7 +159,7 @@ export declare class ExpansionPanelComponent implements OnInit, AfterViewInit, O
159
159
  /**
160
160
  * @hidden
161
161
  */
162
- get svgExpanderIndicatorClasses(): SVGIcon;
162
+ get expanderSvgIcon(): SVGIcon;
163
163
  /**
164
164
  * Toggles the visibility of the ExpansionPanel
165
165
  * ([see example]({% slug interaction_expansionpanel %}#toc-toggling-the-content)).
@@ -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 { arrowUpIcon, arrowDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, chevronUpIcon, chevronDownIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
15
+ import { chevronUpIcon, chevronDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
16
16
  import * as i2 from '@progress/kendo-angular-icons';
17
17
  import { IconsModule } from '@progress/kendo-angular-icons';
18
18
  import * as i3 from '@angular/common';
@@ -31,8 +31,8 @@ const packageMetadata = {
31
31
  name: '@progress/kendo-angular-layout',
32
32
  productName: 'Kendo UI for Angular',
33
33
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
34
- publishDate: 1684846614,
35
- version: '13.0.0-develop.2',
34
+ publishDate: 1685961101,
35
+ version: '13.0.0-develop.20',
36
36
  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'
37
37
  };
38
38
 
@@ -334,14 +334,6 @@ class PanelBarItemComponent {
334
334
  this.role = "treeitem";
335
335
  this.titleAttribute = null; // eslint-disable-line
336
336
  this.kItemClass = true;
337
- /**
338
- * @hidden
339
- */
340
- this.arrowUpSVGIcon = arrowUpIcon;
341
- /**
342
- * @hidden
343
- */
344
- this.arrowDownSVGIcon = arrowDownIcon;
345
337
  this.focused = false;
346
338
  this.wrapperFocused = false;
347
339
  this.subscriptions = new Subscription(() => { });
@@ -477,8 +469,8 @@ class PanelBarItemComponent {
477
469
  /**
478
470
  * @hidden
479
471
  */
480
- get arrowSVGIcon() {
481
- return this.expanded ? this.arrowUpSVGIcon : this.arrowDownSVGIcon;
472
+ get expanderSVGIcon() {
473
+ return this.expanded ? chevronUpIcon : chevronDownIcon;
482
474
  }
483
475
  /**
484
476
  * @hidden
@@ -596,7 +588,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
596
588
  <kendo-icon-wrapper
597
589
  *ngIf="hasChildItems || hasContent"
598
590
  [name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
599
- [svgIcon]="arrowSVGIcon"
591
+ [svgIcon]="expanderSVGIcon"
600
592
  [innerCssClass]="dirInnerCssClasses"
601
593
  >
602
594
  </kendo-icon-wrapper>
@@ -676,7 +668,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
676
668
  </ng-template>
677
669
  <ng-template [ngIf]="!template">{{content}}</ng-template>
678
670
  </div>
679
- </div>`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
671
+ </div>`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
680
672
  trigger('toggle', [
681
673
  state('inactive', style({ display: 'none' })),
682
674
  transition('* => active', [
@@ -749,7 +741,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
749
741
  <kendo-icon-wrapper
750
742
  *ngIf="hasChildItems || hasContent"
751
743
  [name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
752
- [svgIcon]="arrowSVGIcon"
744
+ [svgIcon]="expanderSVGIcon"
753
745
  [innerCssClass]="dirInnerCssClasses"
754
746
  >
755
747
  </kendo-icon-wrapper>
@@ -2102,9 +2094,10 @@ class SplitterBarComponent {
2102
2094
  const isCollapsible = pane.collapsible;
2103
2095
  const isCollapsed = pane.collapsed;
2104
2096
  const isHorizontal = this.orientation === 'horizontal';
2097
+ const isRTL = this.direction === 'rtl';
2105
2098
  return classFromObject({
2106
- 'caret-alt-left': isCollapsible && isHorizontal && !isCollapsed,
2107
- 'caret-alt-right': isCollapsible && isHorizontal && isCollapsed,
2099
+ 'caret-alt-left': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2100
+ 'caret-alt-right': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2108
2101
  'caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
2109
2102
  'caret-alt-down': isCollapsible && !isHorizontal && isCollapsed
2110
2103
  });
@@ -2114,10 +2107,11 @@ class SplitterBarComponent {
2114
2107
  const isCollapsible = pane.collapsible;
2115
2108
  const isCollapsed = pane.collapsed;
2116
2109
  const isHorizontal = this.orientation === 'horizontal';
2117
- if (isCollapsible && isHorizontal && !isCollapsed) {
2110
+ const isRTL = this.direction === 'rtl';
2111
+ if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
2118
2112
  return caretAltLeftIcon;
2119
2113
  }
2120
- if (isCollapsible && isHorizontal && isCollapsed) {
2114
+ if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
2121
2115
  return caretAltRightIcon;
2122
2116
  }
2123
2117
  if (isCollapsible && !isHorizontal && !isCollapsed) {
@@ -2132,9 +2126,10 @@ class SplitterBarComponent {
2132
2126
  const isCollapsible = pane.collapsible;
2133
2127
  const isCollapsed = pane.collapsed;
2134
2128
  const isHorizontal = this.orientation === 'horizontal';
2129
+ const isRTL = this.direction === 'rtl';
2135
2130
  return classFromObject({
2136
- 'caret-alt-right': isCollapsible && isHorizontal && !isCollapsed,
2137
- 'caret-alt-left': isCollapsible && isHorizontal && isCollapsed,
2131
+ 'caret-alt-right': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2132
+ 'caret-alt-left': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2138
2133
  'caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
2139
2134
  'caret-alt-up': isCollapsible && !isHorizontal && isCollapsed
2140
2135
  });
@@ -2144,10 +2139,11 @@ class SplitterBarComponent {
2144
2139
  const isCollapsible = pane.collapsible;
2145
2140
  const isCollapsed = pane.collapsed;
2146
2141
  const isHorizontal = this.orientation === 'horizontal';
2147
- if (isCollapsible && isHorizontal && !isCollapsed) {
2142
+ const isRTL = this.direction === 'rtl';
2143
+ if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
2148
2144
  return caretAltRightIcon;
2149
2145
  }
2150
- if (isCollapsible && isHorizontal && isCollapsed) {
2146
+ if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
2151
2147
  return caretAltLeftIcon;
2152
2148
  }
2153
2149
  if (isCollapsible && !isHorizontal && !isCollapsed) {
@@ -2197,24 +2193,40 @@ class SplitterBarComponent {
2197
2193
  SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i1.LocalizationService }, { token: SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
2198
2194
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SplitterBarComponent, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.aria-orientation": "this.hostOrientation", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
2199
2195
  <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
2200
- <kendo-icon-wrapper [name]="previousArrowClass()" [svgIcon]="previousSVGArrowClass()"></kendo-icon-wrapper>
2196
+ <kendo-icon-wrapper
2197
+ size="xsmall"
2198
+ [name]="previousArrowClass()"
2199
+ [svgIcon]="previousSVGArrowClass()"
2200
+ ></kendo-icon-wrapper>
2201
2201
  </div>
2202
2202
  <div class="k-resize-handle"></div>
2203
2203
  <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
2204
- <kendo-icon-wrapper [name]="nextArrowClass()" [svgIcon]="nextSVGArrowClass()"></kendo-icon-wrapper>
2204
+ <kendo-icon-wrapper
2205
+ size="xsmall"
2206
+ [name]="nextArrowClass()"
2207
+ [svgIcon]="nextSVGArrowClass()"
2208
+ ></kendo-icon-wrapper>
2205
2209
  </div>
2206
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2210
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2207
2211
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SplitterBarComponent, decorators: [{
2208
2212
  type: Component,
2209
2213
  args: [{
2210
2214
  selector: 'kendo-splitter-bar',
2211
2215
  template: `
2212
2216
  <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
2213
- <kendo-icon-wrapper [name]="previousArrowClass()" [svgIcon]="previousSVGArrowClass()"></kendo-icon-wrapper>
2217
+ <kendo-icon-wrapper
2218
+ size="xsmall"
2219
+ [name]="previousArrowClass()"
2220
+ [svgIcon]="previousSVGArrowClass()"
2221
+ ></kendo-icon-wrapper>
2214
2222
  </div>
2215
2223
  <div class="k-resize-handle"></div>
2216
2224
  <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
2217
- <kendo-icon-wrapper [name]="nextArrowClass()" [svgIcon]="nextSVGArrowClass()"></kendo-icon-wrapper>
2225
+ <kendo-icon-wrapper
2226
+ size="xsmall"
2227
+ [name]="nextArrowClass()"
2228
+ [svgIcon]="nextSVGArrowClass()"
2229
+ ></kendo-icon-wrapper>
2218
2230
  </div>
2219
2231
  `
2220
2232
  }]
@@ -3151,13 +3163,18 @@ class TabScrollEvent extends PreventableEvent$1 {
3151
3163
  * @hidden
3152
3164
  */
3153
3165
  class TabStripScrollableButtonComponent {
3154
- constructor(host, renderer, ngZone) {
3166
+ constructor(host, renderer, ngZone, localization) {
3155
3167
  this.host = host;
3156
3168
  this.renderer = renderer;
3157
3169
  this.ngZone = ngZone;
3170
+ this.localization = localization;
3158
3171
  this.prev = false;
3159
3172
  this.tabScroll = new EventEmitter();
3160
3173
  this.onClick = new EventEmitter();
3174
+ this.caretAltLeftIcon = caretAltLeftIcon;
3175
+ this.caretAltRightIcon = caretAltRightIcon;
3176
+ this.caretAltUpIcon = caretAltUpIcon;
3177
+ this.caretAltDownIcon = caretAltDownIcon;
3161
3178
  this.subs = new Subscription();
3162
3179
  this.clickHandler = (scrollEvent) => {
3163
3180
  const tabStripScrollEvent = this.emitScrollEvent(scrollEvent);
@@ -3199,8 +3216,16 @@ class TabStripScrollableButtonComponent {
3199
3216
  this.renderer[show ? 'removeClass' : 'addClass'](this.host.nativeElement, HIDDEN_CLASS);
3200
3217
  }
3201
3218
  get scrollButtonIconClass() {
3202
- const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ? DIRECTION_CLASSES.left : DIRECTION_CLASSES.up;
3203
- const defaultNextIcon = isTablistHorizontal(this.tabPosition) ? DIRECTION_CLASSES.right : DIRECTION_CLASSES.down;
3219
+ const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ?
3220
+ !this.localization.rtl ?
3221
+ DIRECTION_CLASSES.left :
3222
+ DIRECTION_CLASSES.right :
3223
+ DIRECTION_CLASSES.up;
3224
+ const defaultNextIcon = isTablistHorizontal(this.tabPosition) ?
3225
+ !this.localization.rtl ?
3226
+ DIRECTION_CLASSES.right :
3227
+ DIRECTION_CLASSES.left :
3228
+ DIRECTION_CLASSES.down;
3204
3229
  if (typeof this.scrollable === 'object') {
3205
3230
  const prevIcon = typeof this.scrollable.prevButtonIcon === 'undefined' ? defaultPrevIcon : '';
3206
3231
  const nextIcon = typeof this.scrollable.nextButtonIcon === 'undefined' ? defaultNextIcon : '';
@@ -3225,9 +3250,19 @@ class TabStripScrollableButtonComponent {
3225
3250
  }
3226
3251
  }
3227
3252
  get scrollButtonSVGIcon() {
3253
+ const defaultPrevSVGIcon = isTablistHorizontal(this.tabPosition) ?
3254
+ !this.localization.rtl ?
3255
+ this.caretAltLeftIcon :
3256
+ this.caretAltRightIcon :
3257
+ this.caretAltUpIcon;
3258
+ const defaultNextSVGIcon = isTablistHorizontal(this.tabPosition) ?
3259
+ !this.localization.rtl ?
3260
+ this.caretAltRightIcon :
3261
+ this.caretAltLeftIcon :
3262
+ this.caretAltDownIcon;
3228
3263
  if (typeof this.scrollable === 'object') {
3229
- const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : undefined;
3230
- const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : undefined;
3264
+ const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : defaultPrevSVGIcon;
3265
+ const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : defaultNextSVGIcon;
3231
3266
  if (prevIcon || nextIcon) {
3232
3267
  return this.prev ? prevIcon : nextIcon;
3233
3268
  }
@@ -3241,7 +3276,7 @@ class TabStripScrollableButtonComponent {
3241
3276
  return scrollEvent;
3242
3277
  }
3243
3278
  }
3244
- TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3279
+ TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3245
3280
  TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: { prev: "prev", tabPosition: "tabPosition", scrollable: "scrollable" }, outputs: { tabScroll: "tabScroll", onClick: "onClick" }, host: { properties: { "class.k-tabstrip-prev": "this.prevClass", "class.k-tabstrip-next": "this.nextClass" } }, ngImport: i0, template: `
3246
3281
  <kendo-icon-wrapper
3247
3282
  [name]="iconClass"
@@ -3250,7 +3285,7 @@ TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
3250
3285
  innerCssClass="k-button-icon"
3251
3286
  >
3252
3287
  </kendo-icon-wrapper>
3253
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }] });
3288
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
3254
3289
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, decorators: [{
3255
3290
  type: Component,
3256
3291
  args: [{
@@ -3266,7 +3301,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3266
3301
  // eslint-disable-next-line @angular-eslint/component-selector
3267
3302
  selector: '[kendoTabStripScrollableButton]'
3268
3303
  }]
3269
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { prevClass: [{
3304
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1.LocalizationService }]; }, propDecorators: { prevClass: [{
3270
3305
  type: HostBinding,
3271
3306
  args: ['class.k-tabstrip-prev']
3272
3307
  }], nextClass: [{
@@ -4626,7 +4661,7 @@ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
4626
4661
  </kendo-icon-wrapper>
4627
4662
  </ng-container>
4628
4663
  </ng-template>
4629
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
4664
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
4630
4665
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DrawerItemComponent, decorators: [{
4631
4666
  type: Component,
4632
4667
  args: [{
@@ -5836,7 +5871,7 @@ StepperStepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
5836
5871
  </span>
5837
5872
  </ng-container>
5838
5873
  </a>
5839
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
5874
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
5840
5875
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StepperStepComponent, decorators: [{
5841
5876
  type: Component,
5842
5877
  args: [{
@@ -6859,7 +6894,7 @@ AvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
6859
6894
  </kendo-icon-wrapper>
6860
6895
  </span>
6861
6896
  </ng-container>
6862
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedAvatarMessagesDirective, selector: "[kendoAvatarLocalizedMessages]" }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
6897
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedAvatarMessagesDirective, selector: "[kendoAvatarLocalizedMessages]" }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
6863
6898
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AvatarComponent, decorators: [{
6864
6899
  type: Component,
6865
6900
  args: [{
@@ -7552,6 +7587,8 @@ class ExpansionPanelComponent {
7552
7587
  this.animationEnd = new EventEmitter();
7553
7588
  this.subscriptions = new Subscription();
7554
7589
  this._expanded = false;
7590
+ this._svgExpandIcon = caretAltDownIcon;
7591
+ this._svgCollapseIcon = caretAltUpIcon;
7555
7592
  validatePackage(packageMetadata);
7556
7593
  this.direction = localizationService.rtl ? 'rtl' : 'ltr';
7557
7594
  }
@@ -7707,13 +7744,8 @@ class ExpansionPanelComponent {
7707
7744
  /**
7708
7745
  * @hidden
7709
7746
  */
7710
- get svgExpanderIndicatorClasses() {
7711
- if (this.expanded) {
7712
- return this.svgCollapseIcon ? this.svgCollapseIcon : undefined;
7713
- }
7714
- else {
7715
- return this.svgExpandIcon ? this.svgExpandIcon : undefined;
7716
- }
7747
+ get expanderSvgIcon() {
7748
+ return this.expanded ? this.svgCollapseIcon : this.svgExpandIcon;
7717
7749
  }
7718
7750
  /**
7719
7751
  * Toggles the visibility of the ExpansionPanel
@@ -7825,7 +7857,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
7825
7857
  <kendo-icon-wrapper
7826
7858
  [name]="expanderIndicatorClasses"
7827
7859
  [customFontClass]="customExpanderIndicatorClasses"
7828
- [svgIcon]="svgExpanderIndicatorClasses"
7860
+ [svgIcon]="expanderSvgIcon"
7829
7861
  >
7830
7862
  </kendo-icon-wrapper>
7831
7863
  </span>
@@ -7835,7 +7867,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
7835
7867
  <ng-content></ng-content>
7836
7868
  </div>
7837
7869
  </div>
7838
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
7870
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
7839
7871
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ExpansionPanelComponent, decorators: [{
7840
7872
  type: Component,
7841
7873
  args: [{
@@ -7875,7 +7907,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7875
7907
  <kendo-icon-wrapper
7876
7908
  [name]="expanderIndicatorClasses"
7877
7909
  [customFontClass]="customExpanderIndicatorClasses"
7878
- [svgIcon]="svgExpanderIndicatorClasses"
7910
+ [svgIcon]="expanderSvgIcon"
7879
7911
  >
7880
7912
  </kendo-icon-wrapper>
7881
7913
  </span>
@@ -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 { arrowUpIcon, arrowDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, chevronUpIcon, chevronDownIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
15
+ import { chevronUpIcon, chevronDownIcon, caretAltLeftIcon, caretAltRightIcon, caretAltUpIcon, caretAltDownIcon, xIcon, checkCircleIcon, exclamationCircleIcon } from '@progress/kendo-svg-icons';
16
16
  import * as i2 from '@progress/kendo-angular-icons';
17
17
  import { IconsModule } from '@progress/kendo-angular-icons';
18
18
  import * as i3 from '@angular/common';
@@ -31,8 +31,8 @@ const packageMetadata = {
31
31
  name: '@progress/kendo-angular-layout',
32
32
  productName: 'Kendo UI for Angular',
33
33
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
34
- publishDate: 1684846614,
35
- version: '13.0.0-develop.2',
34
+ publishDate: 1685961101,
35
+ version: '13.0.0-develop.20',
36
36
  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'
37
37
  };
38
38
 
@@ -332,14 +332,6 @@ class PanelBarItemComponent {
332
332
  this.role = "treeitem";
333
333
  this.titleAttribute = null; // eslint-disable-line
334
334
  this.kItemClass = true;
335
- /**
336
- * @hidden
337
- */
338
- this.arrowUpSVGIcon = arrowUpIcon;
339
- /**
340
- * @hidden
341
- */
342
- this.arrowDownSVGIcon = arrowDownIcon;
343
335
  this.focused = false;
344
336
  this.wrapperFocused = false;
345
337
  this.subscriptions = new Subscription(() => { });
@@ -475,8 +467,8 @@ class PanelBarItemComponent {
475
467
  /**
476
468
  * @hidden
477
469
  */
478
- get arrowSVGIcon() {
479
- return this.expanded ? this.arrowUpSVGIcon : this.arrowDownSVGIcon;
470
+ get expanderSVGIcon() {
471
+ return this.expanded ? chevronUpIcon : chevronDownIcon;
480
472
  }
481
473
  /**
482
474
  * @hidden
@@ -594,7 +586,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
594
586
  <kendo-icon-wrapper
595
587
  *ngIf="hasChildItems || hasContent"
596
588
  [name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
597
- [svgIcon]="arrowSVGIcon"
589
+ [svgIcon]="expanderSVGIcon"
598
590
  [innerCssClass]="dirInnerCssClasses"
599
591
  >
600
592
  </kendo-icon-wrapper>
@@ -674,7 +666,7 @@ PanelBarItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
674
666
  </ng-template>
675
667
  <ng-template [ngIf]="!template">{{content}}</ng-template>
676
668
  </div>
677
- </div>`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
669
+ </div>`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], animations: [
678
670
  trigger('toggle', [
679
671
  state('inactive', style({ display: 'none' })),
680
672
  transition('* => active', [
@@ -747,7 +739,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
747
739
  <kendo-icon-wrapper
748
740
  *ngIf="hasChildItems || hasContent"
749
741
  [name]="expanded ? 'arrow-chevron-up' : 'chevron-down'"
750
- [svgIcon]="arrowSVGIcon"
742
+ [svgIcon]="expanderSVGIcon"
751
743
  [innerCssClass]="dirInnerCssClasses"
752
744
  >
753
745
  </kendo-icon-wrapper>
@@ -2096,9 +2088,10 @@ class SplitterBarComponent {
2096
2088
  const isCollapsible = pane.collapsible;
2097
2089
  const isCollapsed = pane.collapsed;
2098
2090
  const isHorizontal = this.orientation === 'horizontal';
2091
+ const isRTL = this.direction === 'rtl';
2099
2092
  return classFromObject({
2100
- 'caret-alt-left': isCollapsible && isHorizontal && !isCollapsed,
2101
- 'caret-alt-right': isCollapsible && isHorizontal && isCollapsed,
2093
+ 'caret-alt-left': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2094
+ 'caret-alt-right': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2102
2095
  'caret-alt-up': isCollapsible && !isHorizontal && !isCollapsed,
2103
2096
  'caret-alt-down': isCollapsible && !isHorizontal && isCollapsed
2104
2097
  });
@@ -2108,10 +2101,11 @@ class SplitterBarComponent {
2108
2101
  const isCollapsible = pane.collapsible;
2109
2102
  const isCollapsed = pane.collapsed;
2110
2103
  const isHorizontal = this.orientation === 'horizontal';
2111
- if (isCollapsible && isHorizontal && !isCollapsed) {
2104
+ const isRTL = this.direction === 'rtl';
2105
+ if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
2112
2106
  return caretAltLeftIcon;
2113
2107
  }
2114
- if (isCollapsible && isHorizontal && isCollapsed) {
2108
+ if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
2115
2109
  return caretAltRightIcon;
2116
2110
  }
2117
2111
  if (isCollapsible && !isHorizontal && !isCollapsed) {
@@ -2126,9 +2120,10 @@ class SplitterBarComponent {
2126
2120
  const isCollapsible = pane.collapsible;
2127
2121
  const isCollapsed = pane.collapsed;
2128
2122
  const isHorizontal = this.orientation === 'horizontal';
2123
+ const isRTL = this.direction === 'rtl';
2129
2124
  return classFromObject({
2130
- 'caret-alt-right': isCollapsible && isHorizontal && !isCollapsed,
2131
- 'caret-alt-left': isCollapsible && isHorizontal && isCollapsed,
2125
+ 'caret-alt-right': isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL)),
2126
+ 'caret-alt-left': isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL)),
2132
2127
  'caret-alt-down': isCollapsible && !isHorizontal && !isCollapsed,
2133
2128
  'caret-alt-up': isCollapsible && !isHorizontal && isCollapsed
2134
2129
  });
@@ -2138,10 +2133,11 @@ class SplitterBarComponent {
2138
2133
  const isCollapsible = pane.collapsible;
2139
2134
  const isCollapsed = pane.collapsed;
2140
2135
  const isHorizontal = this.orientation === 'horizontal';
2141
- if (isCollapsible && isHorizontal && !isCollapsed) {
2136
+ const isRTL = this.direction === 'rtl';
2137
+ if (isCollapsible && isHorizontal && ((!isCollapsed && !isRTL) || (isCollapsed && isRTL))) {
2142
2138
  return caretAltRightIcon;
2143
2139
  }
2144
- if (isCollapsible && isHorizontal && isCollapsed) {
2140
+ if (isCollapsible && isHorizontal && ((isCollapsed && !isRTL) || (!isCollapsed && isRTL))) {
2145
2141
  return caretAltLeftIcon;
2146
2142
  }
2147
2143
  if (isCollapsible && !isHorizontal && !isCollapsed) {
@@ -2191,24 +2187,40 @@ class SplitterBarComponent {
2191
2187
  SplitterBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SplitterBarComponent, deps: [{ token: i1$1.DraggableDirective, host: true }, { token: i1.LocalizationService }, { token: SplitterService }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
2192
2188
  SplitterBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SplitterBarComponent, selector: "kendo-splitter-bar", inputs: { orientation: "orientation", index: "index" }, host: { properties: { "attr.role": "this.ariaRole", "class.k-focus": "this.focused", "attr.aria-orientation": "this.hostOrientation", "attr.tabindex": "this.tabIndex", "class": "this.hostClasses", "style.-ms-flex-order": "this.order", "style.order": "this.order" } }, ngImport: i0, template: `
2193
2189
  <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
2194
- <kendo-icon-wrapper [name]="previousArrowClass()" [svgIcon]="previousSVGArrowClass()"></kendo-icon-wrapper>
2190
+ <kendo-icon-wrapper
2191
+ size="xsmall"
2192
+ [name]="previousArrowClass()"
2193
+ [svgIcon]="previousSVGArrowClass()"
2194
+ ></kendo-icon-wrapper>
2195
2195
  </div>
2196
2196
  <div class="k-resize-handle"></div>
2197
2197
  <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
2198
- <kendo-icon-wrapper [name]="nextArrowClass()" [svgIcon]="nextSVGArrowClass()"></kendo-icon-wrapper>
2198
+ <kendo-icon-wrapper
2199
+ size="xsmall"
2200
+ [name]="nextArrowClass()"
2201
+ [svgIcon]="nextSVGArrowClass()"
2202
+ ></kendo-icon-wrapper>
2199
2203
  </div>
2200
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2204
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
2201
2205
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SplitterBarComponent, decorators: [{
2202
2206
  type: Component,
2203
2207
  args: [{
2204
2208
  selector: 'kendo-splitter-bar',
2205
2209
  template: `
2206
2210
  <div *ngIf="shouldShowIcon('prev')" [class]="collapseClass('prev')" (click)="togglePrevious()">
2207
- <kendo-icon-wrapper [name]="previousArrowClass()" [svgIcon]="previousSVGArrowClass()"></kendo-icon-wrapper>
2211
+ <kendo-icon-wrapper
2212
+ size="xsmall"
2213
+ [name]="previousArrowClass()"
2214
+ [svgIcon]="previousSVGArrowClass()"
2215
+ ></kendo-icon-wrapper>
2208
2216
  </div>
2209
2217
  <div class="k-resize-handle"></div>
2210
2218
  <div *ngIf="shouldShowIcon('next')" [class]="collapseClass('next')" (click)="toggleNext()">
2211
- <kendo-icon-wrapper [name]="nextArrowClass()" [svgIcon]="nextSVGArrowClass()"></kendo-icon-wrapper>
2219
+ <kendo-icon-wrapper
2220
+ size="xsmall"
2221
+ [name]="nextArrowClass()"
2222
+ [svgIcon]="nextSVGArrowClass()"
2223
+ ></kendo-icon-wrapper>
2212
2224
  </div>
2213
2225
  `
2214
2226
  }]
@@ -3141,13 +3153,18 @@ class TabScrollEvent extends PreventableEvent$1 {
3141
3153
  * @hidden
3142
3154
  */
3143
3155
  class TabStripScrollableButtonComponent {
3144
- constructor(host, renderer, ngZone) {
3156
+ constructor(host, renderer, ngZone, localization) {
3145
3157
  this.host = host;
3146
3158
  this.renderer = renderer;
3147
3159
  this.ngZone = ngZone;
3160
+ this.localization = localization;
3148
3161
  this.prev = false;
3149
3162
  this.tabScroll = new EventEmitter();
3150
3163
  this.onClick = new EventEmitter();
3164
+ this.caretAltLeftIcon = caretAltLeftIcon;
3165
+ this.caretAltRightIcon = caretAltRightIcon;
3166
+ this.caretAltUpIcon = caretAltUpIcon;
3167
+ this.caretAltDownIcon = caretAltDownIcon;
3151
3168
  this.subs = new Subscription();
3152
3169
  this.clickHandler = (scrollEvent) => {
3153
3170
  const tabStripScrollEvent = this.emitScrollEvent(scrollEvent);
@@ -3189,8 +3206,16 @@ class TabStripScrollableButtonComponent {
3189
3206
  this.renderer[show ? 'removeClass' : 'addClass'](this.host.nativeElement, HIDDEN_CLASS);
3190
3207
  }
3191
3208
  get scrollButtonIconClass() {
3192
- const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ? DIRECTION_CLASSES.left : DIRECTION_CLASSES.up;
3193
- const defaultNextIcon = isTablistHorizontal(this.tabPosition) ? DIRECTION_CLASSES.right : DIRECTION_CLASSES.down;
3209
+ const defaultPrevIcon = isTablistHorizontal(this.tabPosition) ?
3210
+ !this.localization.rtl ?
3211
+ DIRECTION_CLASSES.left :
3212
+ DIRECTION_CLASSES.right :
3213
+ DIRECTION_CLASSES.up;
3214
+ const defaultNextIcon = isTablistHorizontal(this.tabPosition) ?
3215
+ !this.localization.rtl ?
3216
+ DIRECTION_CLASSES.right :
3217
+ DIRECTION_CLASSES.left :
3218
+ DIRECTION_CLASSES.down;
3194
3219
  if (typeof this.scrollable === 'object') {
3195
3220
  const prevIcon = typeof this.scrollable.prevButtonIcon === 'undefined' ? defaultPrevIcon : '';
3196
3221
  const nextIcon = typeof this.scrollable.nextButtonIcon === 'undefined' ? defaultNextIcon : '';
@@ -3215,9 +3240,19 @@ class TabStripScrollableButtonComponent {
3215
3240
  }
3216
3241
  }
3217
3242
  get scrollButtonSVGIcon() {
3243
+ const defaultPrevSVGIcon = isTablistHorizontal(this.tabPosition) ?
3244
+ !this.localization.rtl ?
3245
+ this.caretAltLeftIcon :
3246
+ this.caretAltRightIcon :
3247
+ this.caretAltUpIcon;
3248
+ const defaultNextSVGIcon = isTablistHorizontal(this.tabPosition) ?
3249
+ !this.localization.rtl ?
3250
+ this.caretAltRightIcon :
3251
+ this.caretAltLeftIcon :
3252
+ this.caretAltDownIcon;
3218
3253
  if (typeof this.scrollable === 'object') {
3219
- const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : undefined;
3220
- const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : undefined;
3254
+ const prevIcon = this.scrollable.prevSVGButtonIcon !== undefined ? this.scrollable.prevSVGButtonIcon : defaultPrevSVGIcon;
3255
+ const nextIcon = this.scrollable.nextSVGButtonIcon !== undefined ? this.scrollable.nextSVGButtonIcon : defaultNextSVGIcon;
3221
3256
  if (prevIcon || nextIcon) {
3222
3257
  return this.prev ? prevIcon : nextIcon;
3223
3258
  }
@@ -3231,7 +3266,7 @@ class TabStripScrollableButtonComponent {
3231
3266
  return scrollEvent;
3232
3267
  }
3233
3268
  }
3234
- TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3269
+ TabStripScrollableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
3235
3270
  TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: { prev: "prev", tabPosition: "tabPosition", scrollable: "scrollable" }, outputs: { tabScroll: "tabScroll", onClick: "onClick" }, host: { properties: { "class.k-tabstrip-prev": "this.prevClass", "class.k-tabstrip-next": "this.nextClass" } }, ngImport: i0, template: `
3236
3271
  <kendo-icon-wrapper
3237
3272
  [name]="iconClass"
@@ -3240,7 +3275,7 @@ TabStripScrollableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion
3240
3275
  innerCssClass="k-button-icon"
3241
3276
  >
3242
3277
  </kendo-icon-wrapper>
3243
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }] });
3278
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
3244
3279
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TabStripScrollableButtonComponent, decorators: [{
3245
3280
  type: Component,
3246
3281
  args: [{
@@ -3256,7 +3291,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
3256
3291
  // eslint-disable-next-line @angular-eslint/component-selector
3257
3292
  selector: '[kendoTabStripScrollableButton]'
3258
3293
  }]
3259
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }]; }, propDecorators: { prevClass: [{
3294
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i1.LocalizationService }]; }, propDecorators: { prevClass: [{
3260
3295
  type: HostBinding,
3261
3296
  args: ['class.k-tabstrip-prev']
3262
3297
  }], nextClass: [{
@@ -4608,7 +4643,7 @@ DrawerItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
4608
4643
  </kendo-icon-wrapper>
4609
4644
  </ng-container>
4610
4645
  </ng-template>
4611
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
4646
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
4612
4647
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DrawerItemComponent, decorators: [{
4613
4648
  type: Component,
4614
4649
  args: [{
@@ -5811,7 +5846,7 @@ StepperStepComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
5811
5846
  </span>
5812
5847
  </ng-container>
5813
5848
  </a>
5814
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
5849
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
5815
5850
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: StepperStepComponent, decorators: [{
5816
5851
  type: Component,
5817
5852
  args: [{
@@ -6834,7 +6869,7 @@ AvatarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
6834
6869
  </kendo-icon-wrapper>
6835
6870
  </span>
6836
6871
  </ng-container>
6837
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedAvatarMessagesDirective, selector: "[kendoAvatarLocalizedMessages]" }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
6872
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedAvatarMessagesDirective, selector: "[kendoAvatarLocalizedMessages]" }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
6838
6873
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: AvatarComponent, decorators: [{
6839
6874
  type: Component,
6840
6875
  args: [{
@@ -7525,6 +7560,8 @@ class ExpansionPanelComponent {
7525
7560
  this.animationEnd = new EventEmitter();
7526
7561
  this.subscriptions = new Subscription();
7527
7562
  this._expanded = false;
7563
+ this._svgExpandIcon = caretAltDownIcon;
7564
+ this._svgCollapseIcon = caretAltUpIcon;
7528
7565
  validatePackage(packageMetadata);
7529
7566
  this.direction = localizationService.rtl ? 'rtl' : 'ltr';
7530
7567
  }
@@ -7680,13 +7717,8 @@ class ExpansionPanelComponent {
7680
7717
  /**
7681
7718
  * @hidden
7682
7719
  */
7683
- get svgExpanderIndicatorClasses() {
7684
- if (this.expanded) {
7685
- return this.svgCollapseIcon ? this.svgCollapseIcon : undefined;
7686
- }
7687
- else {
7688
- return this.svgExpandIcon ? this.svgExpandIcon : undefined;
7689
- }
7720
+ get expanderSvgIcon() {
7721
+ return this.expanded ? this.svgCollapseIcon : this.svgExpandIcon;
7690
7722
  }
7691
7723
  /**
7692
7724
  * Toggles the visibility of the ExpansionPanel
@@ -7798,7 +7830,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
7798
7830
  <kendo-icon-wrapper
7799
7831
  [name]="expanderIndicatorClasses"
7800
7832
  [customFontClass]="customExpanderIndicatorClasses"
7801
- [svgIcon]="svgExpanderIndicatorClasses"
7833
+ [svgIcon]="expanderSvgIcon"
7802
7834
  >
7803
7835
  </kendo-icon-wrapper>
7804
7836
  </span>
@@ -7808,7 +7840,7 @@ ExpansionPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
7808
7840
  <ng-content></ng-content>
7809
7841
  </div>
7810
7842
  </div>
7811
- `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
7843
+ `, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
7812
7844
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ExpansionPanelComponent, decorators: [{
7813
7845
  type: Component,
7814
7846
  args: [{
@@ -7848,7 +7880,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
7848
7880
  <kendo-icon-wrapper
7849
7881
  [name]="expanderIndicatorClasses"
7850
7882
  [customFontClass]="customExpanderIndicatorClasses"
7851
- [svgIcon]="svgExpanderIndicatorClasses"
7883
+ [svgIcon]="expanderSvgIcon"
7852
7884
  >
7853
7885
  </kendo-icon-wrapper>
7854
7886
  </span>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "13.0.0-develop.2",
3
+ "version": "13.0.0-develop.20",
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",
@@ -39,16 +39,16 @@
39
39
  "@angular/core": "13 - 16",
40
40
  "@angular/platform-browser": "13 - 16",
41
41
  "@progress/kendo-licensing": "^1.0.2",
42
- "@progress/kendo-angular-common": "13.0.0-develop.2",
43
- "@progress/kendo-angular-l10n": "13.0.0-develop.2",
44
- "@progress/kendo-angular-progressbar": "13.0.0-develop.2",
45
- "@progress/kendo-angular-icons": "13.0.0-develop.2",
46
- "@progress/kendo-angular-buttons": "13.0.0-develop.2",
42
+ "@progress/kendo-angular-common": "13.0.0-develop.20",
43
+ "@progress/kendo-angular-l10n": "13.0.0-develop.20",
44
+ "@progress/kendo-angular-progressbar": "13.0.0-develop.20",
45
+ "@progress/kendo-angular-icons": "13.0.0-develop.20",
46
+ "@progress/kendo-angular-buttons": "13.0.0-develop.20",
47
47
  "rxjs": "^6.5.3 || ^7.0.0"
48
48
  },
49
49
  "dependencies": {
50
50
  "tslib": "^2.3.1",
51
- "@progress/kendo-angular-schematics": "13.0.0-develop.2",
51
+ "@progress/kendo-angular-schematics": "13.0.0-develop.20",
52
52
  "@progress/kendo-draggable": "^3.0.2"
53
53
  },
54
54
  "schematics": "./schematics/collection.json",
@@ -104,14 +104,6 @@ export declare class PanelBarItemComponent implements OnInit, AfterContentChecke
104
104
  contentItems: QueryList<PanelBarItemComponent>;
105
105
  contentTemplate: QueryList<PanelBarContentDirective>;
106
106
  titleTemplates: QueryList<PanelBarItemTitleDirective>;
107
- /**
108
- * @hidden
109
- */
110
- arrowUpSVGIcon: SVGIcon;
111
- /**
112
- * @hidden
113
- */
114
- arrowDownSVGIcon: SVGIcon;
115
107
  focused: boolean;
116
108
  wrapperFocused: boolean;
117
109
  protected subscriptions: Subscription;
@@ -150,7 +142,7 @@ export declare class PanelBarItemComponent implements OnInit, AfterContentChecke
150
142
  /**
151
143
  * @hidden
152
144
  */
153
- get arrowSVGIcon(): SVGIcon;
145
+ get expanderSVGIcon(): SVGIcon;
154
146
  /**
155
147
  * @hidden
156
148
  */
@@ -8,6 +8,7 @@ import { TabStripScrollableSettings } from './models/scrollable-settings';
8
8
  import { TabScrollEvent } from './events/tabscroll-event';
9
9
  import { ScrollButtonType } from './models/scroll-button-type';
10
10
  import { SVGIcon } from '@progress/kendo-svg-icons';
11
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
11
12
  import * as i0 from "@angular/core";
12
13
  /**
13
14
  * @hidden
@@ -16,6 +17,7 @@ export declare class TabStripScrollableButtonComponent implements AfterViewInit,
16
17
  host: ElementRef;
17
18
  private renderer;
18
19
  private ngZone;
20
+ private localization;
19
21
  get prevClass(): boolean;
20
22
  get nextClass(): boolean;
21
23
  prev: boolean;
@@ -27,8 +29,12 @@ export declare class TabStripScrollableButtonComponent implements AfterViewInit,
27
29
  get iconClass(): string;
28
30
  get customIconClass(): string;
29
31
  get svgIcon(): SVGIcon;
32
+ caretAltLeftIcon: SVGIcon;
33
+ caretAltRightIcon: SVGIcon;
34
+ caretAltUpIcon: SVGIcon;
35
+ caretAltDownIcon: SVGIcon;
30
36
  private subs;
31
- constructor(host: ElementRef, renderer: Renderer2, ngZone: NgZone);
37
+ constructor(host: ElementRef, renderer: Renderer2, ngZone: NgZone, localization: LocalizationService);
32
38
  ngAfterViewInit(): void;
33
39
  ngOnDestroy(): void;
34
40
  toggle(show: boolean): void;