@progress/kendo-angular-layout 7.1.5-dev.202210121019 → 7.1.5-dev.202210131323
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/bundles/kendo-angular-layout.umd.js +1 -1
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/tabstrip/localization/messages.js +5 -1
- package/esm2015/tabstrip/rendering/tab.component.js +2 -2
- package/esm2015/tabstrip/tabstrip.component.js +30 -4
- package/fesm2015/kendo-angular-layout.js +38 -8
- package/package.json +1 -1
- package/tabstrip/localization/messages.d.ts +9 -1
|
@@ -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:
|
|
12
|
+
publishDate: 1665667215,
|
|
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
|
};
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
export class TabStripMessages extends ComponentMessages {
|
|
12
12
|
}
|
|
13
13
|
TabStripMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
14
|
-
TabStripMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: TabStripMessages, selector: "kendo-tabstrip-messages-base", inputs: { closeTitle: "closeTitle" }, usesInheritance: true, ngImport: i0 });
|
|
14
|
+
TabStripMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: TabStripMessages, selector: "kendo-tabstrip-messages-base", inputs: { closeTitle: "closeTitle", previousTabButton: "previousTabButton", nextTabButton: "nextTabButton" }, usesInheritance: true, ngImport: i0 });
|
|
15
15
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripMessages, decorators: [{
|
|
16
16
|
type: Directive,
|
|
17
17
|
args: [{
|
|
@@ -20,4 +20,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
20
20
|
}]
|
|
21
21
|
}], propDecorators: { closeTitle: [{
|
|
22
22
|
type: Input
|
|
23
|
+
}], previousTabButton: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], nextTabButton: [{
|
|
26
|
+
type: Input
|
|
23
27
|
}] } });
|
|
@@ -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
|
|
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">
|
|
@@ -104,7 +104,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
104
104
|
args: ['class.k-state-default']
|
|
105
105
|
}], activeClass: [{
|
|
106
106
|
type: HostBinding,
|
|
107
|
-
args: ['attr.aria-selected
|
|
107
|
+
args: ['attr.aria-selected']
|
|
108
108
|
}, {
|
|
109
109
|
type: HostBinding,
|
|
110
110
|
args: ['class.k-active']
|
|
@@ -362,7 +362,14 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
362
362
|
], queries: [{ propertyName: "tabs", predicate: TabStripTabComponent }], viewQueries: [{ propertyName: "tablist", first: true, predicate: ["tablist"], descendants: true }, { propertyName: "prevScrollButton", first: true, predicate: ["prevScrollButton"], descendants: true }, { propertyName: "nextScrollButton", first: true, predicate: ["nextScrollButton"], descendants: true }, { propertyName: "tabHeaderContainers", predicate: ["tabHeaderContainer"], descendants: true, read: ElementRef }], exportAs: ["kendoTabStrip"], usesOnChanges: true, ngImport: i0, template: `
|
|
363
363
|
<ng-container kendoTabStripLocalizedMessages
|
|
364
364
|
i18n-closeTitle="kendo.tabstrip.closeTitle|The title for the **Close** button in the TabStrip tab."
|
|
365
|
-
closeTitle="Close"
|
|
365
|
+
closeTitle="Close"
|
|
366
|
+
|
|
367
|
+
i18n-previousTabButton="kendo.tabstrip.previousTabButton|The title for the **Previous Tab** button when the Tabstrip is scrollable."
|
|
368
|
+
previousTabButton="Previous Tab"
|
|
369
|
+
|
|
370
|
+
i18n-nextTabButton="kendo.tabstrip.nextTabButton|The title for the **Next Tab** button when the Tabstrip is scrollable."
|
|
371
|
+
nextTabButton="Next Tab"
|
|
372
|
+
>
|
|
366
373
|
</ng-container>
|
|
367
374
|
<ng-container *ngIf="!tabsAtBottom">
|
|
368
375
|
<ng-container *ngTemplateOutlet="heading">
|
|
@@ -380,19 +387,23 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
380
387
|
<ng-template #heading>
|
|
381
388
|
<div class="k-tabstrip-items-wrapper" [ngClass]="itemsWrapperClass">
|
|
382
389
|
<span
|
|
390
|
+
role="button"
|
|
383
391
|
*ngIf="hasScrollButtons"
|
|
384
392
|
#prevScrollButton
|
|
385
393
|
kendoTabStripScrollableButton
|
|
386
394
|
[scrollable]="scrollable"
|
|
387
395
|
[tabPosition]="tabPosition"
|
|
388
396
|
[prev]="true"
|
|
397
|
+
[title]="localization.get('previousTabButton')"
|
|
389
398
|
(tabScroll)="tabScroll.emit($event)"
|
|
390
|
-
(onClick)="onScrollButtonClick($event)"
|
|
399
|
+
(onClick)="onScrollButtonClick($event)">
|
|
400
|
+
</span>
|
|
391
401
|
<ul role="tablist" #tablist
|
|
392
402
|
class="k-reset k-tabstrip-items"
|
|
393
403
|
[style.justifyContent]="tabsAlignmentStyles"
|
|
394
404
|
[style.width]="tabListWidth"
|
|
395
405
|
[style.height]="tabListHeight"
|
|
406
|
+
[attr.aria-orientation]="tabPosition === 'left' || tabPosition === 'right' ? 'vertical' : 'horizontal'"
|
|
396
407
|
>
|
|
397
408
|
<ng-container *ngFor="let tab of tabs; let i = index;">
|
|
398
409
|
<li
|
|
@@ -412,12 +423,14 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
412
423
|
</ng-container>
|
|
413
424
|
</ul>
|
|
414
425
|
<span
|
|
426
|
+
role="button"
|
|
415
427
|
*ngIf="hasScrollButtons"
|
|
416
428
|
#nextScrollButton
|
|
417
429
|
kendoTabStripScrollableButton
|
|
418
430
|
[scrollable]="scrollable"
|
|
419
431
|
[tabPosition]="tabPosition"
|
|
420
432
|
[prev]="false"
|
|
433
|
+
[title]="localization.get('nextTabButton')"
|
|
421
434
|
(tabScroll)="tabScroll.emit($event)"
|
|
422
435
|
(onClick)="onScrollButtonClick($event)"></span>
|
|
423
436
|
</div>
|
|
@@ -477,7 +490,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
477
490
|
template: `
|
|
478
491
|
<ng-container kendoTabStripLocalizedMessages
|
|
479
492
|
i18n-closeTitle="kendo.tabstrip.closeTitle|The title for the **Close** button in the TabStrip tab."
|
|
480
|
-
closeTitle="Close"
|
|
493
|
+
closeTitle="Close"
|
|
494
|
+
|
|
495
|
+
i18n-previousTabButton="kendo.tabstrip.previousTabButton|The title for the **Previous Tab** button when the Tabstrip is scrollable."
|
|
496
|
+
previousTabButton="Previous Tab"
|
|
497
|
+
|
|
498
|
+
i18n-nextTabButton="kendo.tabstrip.nextTabButton|The title for the **Next Tab** button when the Tabstrip is scrollable."
|
|
499
|
+
nextTabButton="Next Tab"
|
|
500
|
+
>
|
|
481
501
|
</ng-container>
|
|
482
502
|
<ng-container *ngIf="!tabsAtBottom">
|
|
483
503
|
<ng-container *ngTemplateOutlet="heading">
|
|
@@ -495,19 +515,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
495
515
|
<ng-template #heading>
|
|
496
516
|
<div class="k-tabstrip-items-wrapper" [ngClass]="itemsWrapperClass">
|
|
497
517
|
<span
|
|
518
|
+
role="button"
|
|
498
519
|
*ngIf="hasScrollButtons"
|
|
499
520
|
#prevScrollButton
|
|
500
521
|
kendoTabStripScrollableButton
|
|
501
522
|
[scrollable]="scrollable"
|
|
502
523
|
[tabPosition]="tabPosition"
|
|
503
524
|
[prev]="true"
|
|
525
|
+
[title]="localization.get('previousTabButton')"
|
|
504
526
|
(tabScroll)="tabScroll.emit($event)"
|
|
505
|
-
(onClick)="onScrollButtonClick($event)"
|
|
527
|
+
(onClick)="onScrollButtonClick($event)">
|
|
528
|
+
</span>
|
|
506
529
|
<ul role="tablist" #tablist
|
|
507
530
|
class="k-reset k-tabstrip-items"
|
|
508
531
|
[style.justifyContent]="tabsAlignmentStyles"
|
|
509
532
|
[style.width]="tabListWidth"
|
|
510
533
|
[style.height]="tabListHeight"
|
|
534
|
+
[attr.aria-orientation]="tabPosition === 'left' || tabPosition === 'right' ? 'vertical' : 'horizontal'"
|
|
511
535
|
>
|
|
512
536
|
<ng-container *ngFor="let tab of tabs; let i = index;">
|
|
513
537
|
<li
|
|
@@ -527,12 +551,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
527
551
|
</ng-container>
|
|
528
552
|
</ul>
|
|
529
553
|
<span
|
|
554
|
+
role="button"
|
|
530
555
|
*ngIf="hasScrollButtons"
|
|
531
556
|
#nextScrollButton
|
|
532
557
|
kendoTabStripScrollableButton
|
|
533
558
|
[scrollable]="scrollable"
|
|
534
559
|
[tabPosition]="tabPosition"
|
|
535
560
|
[prev]="false"
|
|
561
|
+
[title]="localization.get('nextTabButton')"
|
|
536
562
|
(tabScroll)="tabScroll.emit($event)"
|
|
537
563
|
(onClick)="onScrollButtonClick($event)"></span>
|
|
538
564
|
</div>
|
|
@@ -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:
|
|
29
|
+
publishDate: 1665667215,
|
|
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
|
};
|
|
@@ -3120,7 +3120,7 @@ class TabComponent {
|
|
|
3120
3120
|
}
|
|
3121
3121
|
}
|
|
3122
3122
|
TabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3123
|
-
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
|
|
3123
|
+
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: `
|
|
3124
3124
|
<span class="k-link" *ngIf="!tab.tabTitle">{{ tab.title }}</span>
|
|
3125
3125
|
<span class="k-link" *ngIf="tab.tabTitle">
|
|
3126
3126
|
<ng-template [ngTemplateOutlet]="tab.tabTitle?.templateRef">
|
|
@@ -3174,7 +3174,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3174
3174
|
args: ['class.k-state-default']
|
|
3175
3175
|
}], activeClass: [{
|
|
3176
3176
|
type: HostBinding,
|
|
3177
|
-
args: ['attr.aria-selected
|
|
3177
|
+
args: ['attr.aria-selected']
|
|
3178
3178
|
}, {
|
|
3179
3179
|
type: HostBinding,
|
|
3180
3180
|
args: ['class.k-active']
|
|
@@ -3198,7 +3198,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3198
3198
|
class TabStripMessages extends ComponentMessages {
|
|
3199
3199
|
}
|
|
3200
3200
|
TabStripMessages.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3201
|
-
TabStripMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: TabStripMessages, selector: "kendo-tabstrip-messages-base", inputs: { closeTitle: "closeTitle" }, usesInheritance: true, ngImport: i0 });
|
|
3201
|
+
TabStripMessages.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: TabStripMessages, selector: "kendo-tabstrip-messages-base", inputs: { closeTitle: "closeTitle", previousTabButton: "previousTabButton", nextTabButton: "nextTabButton" }, usesInheritance: true, ngImport: i0 });
|
|
3202
3202
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TabStripMessages, decorators: [{
|
|
3203
3203
|
type: Directive,
|
|
3204
3204
|
args: [{
|
|
@@ -3207,6 +3207,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3207
3207
|
}]
|
|
3208
3208
|
}], propDecorators: { closeTitle: [{
|
|
3209
3209
|
type: Input
|
|
3210
|
+
}], previousTabButton: [{
|
|
3211
|
+
type: Input
|
|
3212
|
+
}], nextTabButton: [{
|
|
3213
|
+
type: Input
|
|
3210
3214
|
}] } });
|
|
3211
3215
|
|
|
3212
3216
|
/**
|
|
@@ -3574,7 +3578,14 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
3574
3578
|
], queries: [{ propertyName: "tabs", predicate: TabStripTabComponent }], viewQueries: [{ propertyName: "tablist", first: true, predicate: ["tablist"], descendants: true }, { propertyName: "prevScrollButton", first: true, predicate: ["prevScrollButton"], descendants: true }, { propertyName: "nextScrollButton", first: true, predicate: ["nextScrollButton"], descendants: true }, { propertyName: "tabHeaderContainers", predicate: ["tabHeaderContainer"], descendants: true, read: ElementRef }], exportAs: ["kendoTabStrip"], usesOnChanges: true, ngImport: i0, template: `
|
|
3575
3579
|
<ng-container kendoTabStripLocalizedMessages
|
|
3576
3580
|
i18n-closeTitle="kendo.tabstrip.closeTitle|The title for the **Close** button in the TabStrip tab."
|
|
3577
|
-
closeTitle="Close"
|
|
3581
|
+
closeTitle="Close"
|
|
3582
|
+
|
|
3583
|
+
i18n-previousTabButton="kendo.tabstrip.previousTabButton|The title for the **Previous Tab** button when the Tabstrip is scrollable."
|
|
3584
|
+
previousTabButton="Previous Tab"
|
|
3585
|
+
|
|
3586
|
+
i18n-nextTabButton="kendo.tabstrip.nextTabButton|The title for the **Next Tab** button when the Tabstrip is scrollable."
|
|
3587
|
+
nextTabButton="Next Tab"
|
|
3588
|
+
>
|
|
3578
3589
|
</ng-container>
|
|
3579
3590
|
<ng-container *ngIf="!tabsAtBottom">
|
|
3580
3591
|
<ng-container *ngTemplateOutlet="heading">
|
|
@@ -3592,19 +3603,23 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
3592
3603
|
<ng-template #heading>
|
|
3593
3604
|
<div class="k-tabstrip-items-wrapper" [ngClass]="itemsWrapperClass">
|
|
3594
3605
|
<span
|
|
3606
|
+
role="button"
|
|
3595
3607
|
*ngIf="hasScrollButtons"
|
|
3596
3608
|
#prevScrollButton
|
|
3597
3609
|
kendoTabStripScrollableButton
|
|
3598
3610
|
[scrollable]="scrollable"
|
|
3599
3611
|
[tabPosition]="tabPosition"
|
|
3600
3612
|
[prev]="true"
|
|
3613
|
+
[title]="localization.get('previousTabButton')"
|
|
3601
3614
|
(tabScroll)="tabScroll.emit($event)"
|
|
3602
|
-
(onClick)="onScrollButtonClick($event)"
|
|
3615
|
+
(onClick)="onScrollButtonClick($event)">
|
|
3616
|
+
</span>
|
|
3603
3617
|
<ul role="tablist" #tablist
|
|
3604
3618
|
class="k-reset k-tabstrip-items"
|
|
3605
3619
|
[style.justifyContent]="tabsAlignmentStyles"
|
|
3606
3620
|
[style.width]="tabListWidth"
|
|
3607
3621
|
[style.height]="tabListHeight"
|
|
3622
|
+
[attr.aria-orientation]="tabPosition === 'left' || tabPosition === 'right' ? 'vertical' : 'horizontal'"
|
|
3608
3623
|
>
|
|
3609
3624
|
<ng-container *ngFor="let tab of tabs; let i = index;">
|
|
3610
3625
|
<li
|
|
@@ -3624,12 +3639,14 @@ TabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
3624
3639
|
</ng-container>
|
|
3625
3640
|
</ul>
|
|
3626
3641
|
<span
|
|
3642
|
+
role="button"
|
|
3627
3643
|
*ngIf="hasScrollButtons"
|
|
3628
3644
|
#nextScrollButton
|
|
3629
3645
|
kendoTabStripScrollableButton
|
|
3630
3646
|
[scrollable]="scrollable"
|
|
3631
3647
|
[tabPosition]="tabPosition"
|
|
3632
3648
|
[prev]="false"
|
|
3649
|
+
[title]="localization.get('nextTabButton')"
|
|
3633
3650
|
(tabScroll)="tabScroll.emit($event)"
|
|
3634
3651
|
(onClick)="onScrollButtonClick($event)"></span>
|
|
3635
3652
|
</div>
|
|
@@ -3689,7 +3706,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3689
3706
|
template: `
|
|
3690
3707
|
<ng-container kendoTabStripLocalizedMessages
|
|
3691
3708
|
i18n-closeTitle="kendo.tabstrip.closeTitle|The title for the **Close** button in the TabStrip tab."
|
|
3692
|
-
closeTitle="Close"
|
|
3709
|
+
closeTitle="Close"
|
|
3710
|
+
|
|
3711
|
+
i18n-previousTabButton="kendo.tabstrip.previousTabButton|The title for the **Previous Tab** button when the Tabstrip is scrollable."
|
|
3712
|
+
previousTabButton="Previous Tab"
|
|
3713
|
+
|
|
3714
|
+
i18n-nextTabButton="kendo.tabstrip.nextTabButton|The title for the **Next Tab** button when the Tabstrip is scrollable."
|
|
3715
|
+
nextTabButton="Next Tab"
|
|
3716
|
+
>
|
|
3693
3717
|
</ng-container>
|
|
3694
3718
|
<ng-container *ngIf="!tabsAtBottom">
|
|
3695
3719
|
<ng-container *ngTemplateOutlet="heading">
|
|
@@ -3707,19 +3731,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3707
3731
|
<ng-template #heading>
|
|
3708
3732
|
<div class="k-tabstrip-items-wrapper" [ngClass]="itemsWrapperClass">
|
|
3709
3733
|
<span
|
|
3734
|
+
role="button"
|
|
3710
3735
|
*ngIf="hasScrollButtons"
|
|
3711
3736
|
#prevScrollButton
|
|
3712
3737
|
kendoTabStripScrollableButton
|
|
3713
3738
|
[scrollable]="scrollable"
|
|
3714
3739
|
[tabPosition]="tabPosition"
|
|
3715
3740
|
[prev]="true"
|
|
3741
|
+
[title]="localization.get('previousTabButton')"
|
|
3716
3742
|
(tabScroll)="tabScroll.emit($event)"
|
|
3717
|
-
(onClick)="onScrollButtonClick($event)"
|
|
3743
|
+
(onClick)="onScrollButtonClick($event)">
|
|
3744
|
+
</span>
|
|
3718
3745
|
<ul role="tablist" #tablist
|
|
3719
3746
|
class="k-reset k-tabstrip-items"
|
|
3720
3747
|
[style.justifyContent]="tabsAlignmentStyles"
|
|
3721
3748
|
[style.width]="tabListWidth"
|
|
3722
3749
|
[style.height]="tabListHeight"
|
|
3750
|
+
[attr.aria-orientation]="tabPosition === 'left' || tabPosition === 'right' ? 'vertical' : 'horizontal'"
|
|
3723
3751
|
>
|
|
3724
3752
|
<ng-container *ngFor="let tab of tabs; let i = index;">
|
|
3725
3753
|
<li
|
|
@@ -3739,12 +3767,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3739
3767
|
</ng-container>
|
|
3740
3768
|
</ul>
|
|
3741
3769
|
<span
|
|
3770
|
+
role="button"
|
|
3742
3771
|
*ngIf="hasScrollButtons"
|
|
3743
3772
|
#nextScrollButton
|
|
3744
3773
|
kendoTabStripScrollableButton
|
|
3745
3774
|
[scrollable]="scrollable"
|
|
3746
3775
|
[tabPosition]="tabPosition"
|
|
3747
3776
|
[prev]="false"
|
|
3777
|
+
[title]="localization.get('nextTabButton')"
|
|
3748
3778
|
(tabScroll)="tabScroll.emit($event)"
|
|
3749
3779
|
(onClick)="onScrollButtonClick($event)"></span>
|
|
3750
3780
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-layout",
|
|
3
|
-
"version": "7.1.5-dev.
|
|
3
|
+
"version": "7.1.5-dev.202210131323",
|
|
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",
|
|
@@ -12,6 +12,14 @@ export declare class TabStripMessages extends ComponentMessages {
|
|
|
12
12
|
* The title for the **Close** button in the TabStrip tab.
|
|
13
13
|
*/
|
|
14
14
|
closeTitle: string;
|
|
15
|
+
/**
|
|
16
|
+
* The title for the **Previous Tab** button when the Tabstrip is scrollable.
|
|
17
|
+
*/
|
|
18
|
+
previousTabButton: string;
|
|
19
|
+
/**
|
|
20
|
+
* The title for the **Next Tab** button when the Tabstrip is scrollable.
|
|
21
|
+
*/
|
|
22
|
+
nextTabButton: string;
|
|
15
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabStripMessages, never>;
|
|
16
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TabStripMessages, "kendo-tabstrip-messages-base", never, { "closeTitle": "closeTitle"; }, {}, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabStripMessages, "kendo-tabstrip-messages-base", never, { "closeTitle": "closeTitle"; "previousTabButton": "previousTabButton"; "nextTabButton": "nextTabButton"; }, {}, never>;
|
|
17
25
|
}
|