@progress/kendo-angular-scrollview 21.1.1-develop.2 → 21.2.0-develop.1
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.
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '21.
|
|
13
|
+
publishDate: 1763998490,
|
|
14
|
+
version: '21.2.0-develop.1',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import { Component, Input, Output } from '@angular/core';
|
|
7
7
|
import { EventEmitter } from '@angular/core';
|
|
8
8
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
9
|
-
import {
|
|
9
|
+
import { NgClass } from '@angular/common';
|
|
10
10
|
import { replaceMessagePlaceholder } from '@progress/kendo-angular-common';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
@@ -34,14 +34,16 @@ export class ScrollViewPagerComponent {
|
|
|
34
34
|
return replaceMessagePlaceholder(localizationMsg, 'itemIndex', itemIndex.toString());
|
|
35
35
|
}
|
|
36
36
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollViewPagerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
37
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
37
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ScrollViewPagerComponent, isStandalone: true, selector: "kendo-scrollview-pager", inputs: { activeIndex: "activeIndex", data: "data" }, outputs: { pagerIndexChange: "pagerIndexChange" }, ngImport: i0, template: `
|
|
38
38
|
<div class="k-scrollview-nav">
|
|
39
|
-
|
|
39
|
+
@for (item of data; track $index; let i = $index) {
|
|
40
|
+
<span [attr.aria-label]="pagerButtonLabel(i + 1)" role="button" class="k-link"
|
|
40
41
|
[ngClass]="itemClass(i)"
|
|
41
42
|
(click)="indexChange(i)">
|
|
42
|
-
|
|
43
|
+
</span>
|
|
44
|
+
}
|
|
43
45
|
</div>
|
|
44
|
-
|
|
46
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
45
47
|
}
|
|
46
48
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollViewPagerComponent, decorators: [{
|
|
47
49
|
type: Component,
|
|
@@ -49,14 +51,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
49
51
|
selector: 'kendo-scrollview-pager',
|
|
50
52
|
template: `
|
|
51
53
|
<div class="k-scrollview-nav">
|
|
52
|
-
|
|
54
|
+
@for (item of data; track $index; let i = $index) {
|
|
55
|
+
<span [attr.aria-label]="pagerButtonLabel(i + 1)" role="button" class="k-link"
|
|
53
56
|
[ngClass]="itemClass(i)"
|
|
54
57
|
(click)="indexChange(i)">
|
|
55
|
-
|
|
58
|
+
</span>
|
|
59
|
+
}
|
|
56
60
|
</div>
|
|
57
|
-
|
|
61
|
+
`,
|
|
58
62
|
standalone: true,
|
|
59
|
-
imports: [
|
|
63
|
+
imports: [NgClass]
|
|
60
64
|
}]
|
|
61
65
|
}], ctorParameters: () => [{ type: i1.LocalizationService }], propDecorators: { activeIndex: [{
|
|
62
66
|
type: Input
|
|
@@ -16,7 +16,7 @@ import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
|
16
16
|
import { chevronLeftIcon, chevronRightIcon } from '@progress/kendo-svg-icons';
|
|
17
17
|
import { Subscription } from 'rxjs';
|
|
18
18
|
import { ScrollViewPagerComponent } from './scrollview-pager.component';
|
|
19
|
-
import {
|
|
19
|
+
import { NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
20
20
|
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
21
21
|
import { IconWrapperComponent } from '@progress/kendo-angular-icons';
|
|
22
22
|
import * as i0 from "@angular/core";
|
|
@@ -424,7 +424,7 @@ export class ScrollViewComponent {
|
|
|
424
424
|
return this.direction === 'ltr' ? this.chevronRightIcon : this.chevronLeftIcon;
|
|
425
425
|
}
|
|
426
426
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollViewComponent, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
427
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
427
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ScrollViewComponent, isStandalone: true, selector: "kendo-scrollview", inputs: { data: "data", activeIndex: "activeIndex", width: "width", height: "height", endless: "endless", pagerOverlay: "pagerOverlay", animate: "animate", pageable: "pageable", arrows: "arrows" }, outputs: { itemChanged: "itemChanged", activeIndexChange: "activeIndexChange" }, host: { properties: { "class.k-scrollview": "this.scrollViewClass", "attr.role": "this.scrollViewRole", "attr.aria-roledescription": "this.scrollViewRoleDescription", "class.k-scrollview-light": "this.scrollViewLightOverlayClass", "class.k-scrollview-dark": "this.scrollViewDarkOverlayClass", "style.width": "this.hostWidth", "style.height": "this.hostHeight", "attr.tabindex": "this.tabIndex", "attr.aria-live": "this.ariaLive", "attr.dir": "this.dir", "style.touch-action": "this.touchAction" } }, providers: [
|
|
428
428
|
LocalizationService,
|
|
429
429
|
{
|
|
430
430
|
provide: L10N_PREFIX,
|
|
@@ -432,79 +432,84 @@ export class ScrollViewComponent {
|
|
|
432
432
|
}
|
|
433
433
|
], queries: [{ propertyName: "itemTemplateRef", first: true, predicate: TemplateRef, descendants: true }], viewQueries: [{ propertyName: "itemWrapper", first: true, predicate: ["itemWrapper"], descendants: true }, { propertyName: "prevButton", first: true, predicate: ["prevButton"], descendants: true }, { propertyName: "nextButton", first: true, predicate: ["nextButton"], descendants: true }], exportAs: ["kendoScrollView"], usesOnChanges: true, ngImport: i0, template: `
|
|
434
434
|
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
435
|
+
<ng-container kendoScrollViewLocalizedMessages
|
|
436
|
+
i18n-pagerButtonLabel="kendo.scrollview.pagerButtonLabel|The label for the buttons inside the ScrollView Pager"
|
|
437
|
+
pagerButtonLabel="{{ 'Item {itemIndex}' }}">
|
|
438
|
+
<ng-container>
|
|
439
439
|
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
440
|
+
<div class="k-scrollview-wrap k-scrollview-animate"
|
|
441
|
+
#itemWrapper
|
|
442
|
+
role="list"
|
|
443
|
+
[id]="scrollviewId"
|
|
444
|
+
[@animateTo]="animationState"
|
|
445
|
+
(@animateTo.done)="transitionEndHandler($event)"
|
|
446
|
+
kendoDraggable
|
|
447
|
+
(kendoDrag)="handleDrag($event)"
|
|
448
|
+
(kendoPress)="handlePress($event)"
|
|
449
|
+
(kendoRelease)="handleRelease($event)"
|
|
450
|
+
>
|
|
451
|
+
@for (item of view; track $index; let i = $index) {
|
|
452
|
+
<div class="k-scrollview-view"
|
|
453
|
+
role="listitem"
|
|
454
|
+
aria-roledescription="slide"
|
|
455
|
+
[ngStyle]="inlineListItemStyles(i)"
|
|
456
|
+
[attr.aria-hidden]="i !== 1"
|
|
457
|
+
>
|
|
458
|
+
<ng-template
|
|
459
|
+
[ngTemplateOutlet]="itemTemplateRef"
|
|
460
|
+
[ngTemplateOutletContext]="{ item: item }">
|
|
461
|
+
</ng-template>
|
|
462
|
+
</div>
|
|
463
|
+
}
|
|
464
|
+
</div>
|
|
465
|
+
@if (!isDataSourceEmpty && (pageable || arrows)) {
|
|
466
|
+
<div class='k-scrollview-elements'
|
|
467
|
+
[ngStyle]="{'height': height}"
|
|
450
468
|
>
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
469
|
+
@if (arrows && displayLeftArrow()) {
|
|
470
|
+
<span
|
|
471
|
+
#prevButton
|
|
472
|
+
class="k-scrollview-prev"
|
|
473
|
+
role="button"
|
|
474
|
+
[attr.aria-controls]="scrollviewId"
|
|
475
|
+
aria-label="previous"
|
|
476
|
+
(click)="leftArrowClick()">
|
|
477
|
+
<kendo-icon-wrapper
|
|
478
|
+
size="xxxlarge"
|
|
479
|
+
[name]="prevButtonArrowIcon"
|
|
480
|
+
[svgIcon]="prevButtonArrowSVGIcon"
|
|
481
|
+
>
|
|
482
|
+
</kendo-icon-wrapper>
|
|
483
|
+
</span>
|
|
484
|
+
}
|
|
485
|
+
@if (arrows && displayRightArrow()) {
|
|
486
|
+
<span
|
|
487
|
+
#nextButton
|
|
488
|
+
class="k-scrollview-next"
|
|
489
|
+
role="button"
|
|
490
|
+
[attr.aria-controls]="scrollviewId"
|
|
491
|
+
aria-label="next"
|
|
492
|
+
(click)="rightArrowClick()">
|
|
493
|
+
<kendo-icon-wrapper
|
|
494
|
+
size="xxxlarge"
|
|
495
|
+
[name]="nextButtonArrowIcon"
|
|
496
|
+
[svgIcon]="nextButtonArrowSVGIcon"
|
|
497
|
+
>
|
|
498
|
+
</kendo-icon-wrapper>
|
|
499
|
+
</span>
|
|
500
|
+
}
|
|
501
|
+
@if (pageable) {
|
|
502
|
+
<kendo-scrollview-pager
|
|
503
|
+
class='k-scrollview-nav-wrap'
|
|
504
|
+
(pagerIndexChange)="pageChange($event)"
|
|
505
|
+
[data]="data"
|
|
506
|
+
[activeIndex]="activeIndex">
|
|
507
|
+
</kendo-scrollview-pager>
|
|
508
|
+
}
|
|
463
509
|
</div>
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
<span
|
|
469
|
-
#prevButton
|
|
470
|
-
class="k-scrollview-prev"
|
|
471
|
-
role="button"
|
|
472
|
-
[attr.aria-controls]="scrollviewId"
|
|
473
|
-
aria-label="previous"
|
|
474
|
-
*ngIf="arrows && displayLeftArrow()"
|
|
475
|
-
(click)="leftArrowClick()">
|
|
476
|
-
<kendo-icon-wrapper
|
|
477
|
-
size="xxxlarge"
|
|
478
|
-
[name]="prevButtonArrowIcon"
|
|
479
|
-
[svgIcon]="prevButtonArrowSVGIcon"
|
|
480
|
-
>
|
|
481
|
-
</kendo-icon-wrapper>
|
|
482
|
-
</span>
|
|
483
|
-
<span
|
|
484
|
-
#nextButton
|
|
485
|
-
class="k-scrollview-next"
|
|
486
|
-
role="button"
|
|
487
|
-
[attr.aria-controls]="scrollviewId"
|
|
488
|
-
aria-label="next"
|
|
489
|
-
*ngIf="arrows && displayRightArrow()"
|
|
490
|
-
(click)="rightArrowClick()">
|
|
491
|
-
<kendo-icon-wrapper
|
|
492
|
-
size="xxxlarge"
|
|
493
|
-
[name]="nextButtonArrowIcon"
|
|
494
|
-
[svgIcon]="nextButtonArrowSVGIcon"
|
|
495
|
-
>
|
|
496
|
-
</kendo-icon-wrapper>
|
|
497
|
-
</span>
|
|
498
|
-
<kendo-scrollview-pager
|
|
499
|
-
class='k-scrollview-nav-wrap'
|
|
500
|
-
*ngIf="pageable"
|
|
501
|
-
(pagerIndexChange)="pageChange($event)"
|
|
502
|
-
[data]="data"
|
|
503
|
-
[activeIndex]="activeIndex">
|
|
504
|
-
</kendo-scrollview-pager>
|
|
505
|
-
</div>
|
|
506
|
-
<div class="k-sr-only" aria-live="polite"></div>
|
|
507
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoScrollViewLocalizedMessages]" }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ScrollViewPagerComponent, selector: "kendo-scrollview-pager", inputs: ["activeIndex", "data"], outputs: ["pagerIndexChange"] }], animations: [
|
|
510
|
+
}
|
|
511
|
+
<div class="k-sr-only" aria-live="polite"></div>
|
|
512
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoScrollViewLocalizedMessages]" }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ScrollViewPagerComponent, selector: "kendo-scrollview-pager", inputs: ["activeIndex", "data"], outputs: ["pagerIndexChange"] }], animations: [
|
|
508
513
|
trigger('animateTo', [
|
|
509
514
|
state('center, left, right', style({ transform: 'translateX(0)' })),
|
|
510
515
|
transition('* => right', [
|
|
@@ -547,81 +552,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
547
552
|
selector: 'kendo-scrollview',
|
|
548
553
|
template: `
|
|
549
554
|
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
555
|
+
<ng-container kendoScrollViewLocalizedMessages
|
|
556
|
+
i18n-pagerButtonLabel="kendo.scrollview.pagerButtonLabel|The label for the buttons inside the ScrollView Pager"
|
|
557
|
+
pagerButtonLabel="{{ 'Item {itemIndex}' }}">
|
|
558
|
+
<ng-container>
|
|
554
559
|
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
560
|
+
<div class="k-scrollview-wrap k-scrollview-animate"
|
|
561
|
+
#itemWrapper
|
|
562
|
+
role="list"
|
|
563
|
+
[id]="scrollviewId"
|
|
564
|
+
[@animateTo]="animationState"
|
|
565
|
+
(@animateTo.done)="transitionEndHandler($event)"
|
|
566
|
+
kendoDraggable
|
|
567
|
+
(kendoDrag)="handleDrag($event)"
|
|
568
|
+
(kendoPress)="handlePress($event)"
|
|
569
|
+
(kendoRelease)="handleRelease($event)"
|
|
570
|
+
>
|
|
571
|
+
@for (item of view; track $index; let i = $index) {
|
|
572
|
+
<div class="k-scrollview-view"
|
|
573
|
+
role="listitem"
|
|
574
|
+
aria-roledescription="slide"
|
|
575
|
+
[ngStyle]="inlineListItemStyles(i)"
|
|
576
|
+
[attr.aria-hidden]="i !== 1"
|
|
577
|
+
>
|
|
578
|
+
<ng-template
|
|
579
|
+
[ngTemplateOutlet]="itemTemplateRef"
|
|
580
|
+
[ngTemplateOutletContext]="{ item: item }">
|
|
581
|
+
</ng-template>
|
|
582
|
+
</div>
|
|
583
|
+
}
|
|
584
|
+
</div>
|
|
585
|
+
@if (!isDataSourceEmpty && (pageable || arrows)) {
|
|
586
|
+
<div class='k-scrollview-elements'
|
|
587
|
+
[ngStyle]="{'height': height}"
|
|
565
588
|
>
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
589
|
+
@if (arrows && displayLeftArrow()) {
|
|
590
|
+
<span
|
|
591
|
+
#prevButton
|
|
592
|
+
class="k-scrollview-prev"
|
|
593
|
+
role="button"
|
|
594
|
+
[attr.aria-controls]="scrollviewId"
|
|
595
|
+
aria-label="previous"
|
|
596
|
+
(click)="leftArrowClick()">
|
|
597
|
+
<kendo-icon-wrapper
|
|
598
|
+
size="xxxlarge"
|
|
599
|
+
[name]="prevButtonArrowIcon"
|
|
600
|
+
[svgIcon]="prevButtonArrowSVGIcon"
|
|
601
|
+
>
|
|
602
|
+
</kendo-icon-wrapper>
|
|
603
|
+
</span>
|
|
604
|
+
}
|
|
605
|
+
@if (arrows && displayRightArrow()) {
|
|
606
|
+
<span
|
|
607
|
+
#nextButton
|
|
608
|
+
class="k-scrollview-next"
|
|
609
|
+
role="button"
|
|
610
|
+
[attr.aria-controls]="scrollviewId"
|
|
611
|
+
aria-label="next"
|
|
612
|
+
(click)="rightArrowClick()">
|
|
613
|
+
<kendo-icon-wrapper
|
|
614
|
+
size="xxxlarge"
|
|
615
|
+
[name]="nextButtonArrowIcon"
|
|
616
|
+
[svgIcon]="nextButtonArrowSVGIcon"
|
|
617
|
+
>
|
|
618
|
+
</kendo-icon-wrapper>
|
|
619
|
+
</span>
|
|
620
|
+
}
|
|
621
|
+
@if (pageable) {
|
|
622
|
+
<kendo-scrollview-pager
|
|
623
|
+
class='k-scrollview-nav-wrap'
|
|
624
|
+
(pagerIndexChange)="pageChange($event)"
|
|
625
|
+
[data]="data"
|
|
626
|
+
[activeIndex]="activeIndex">
|
|
627
|
+
</kendo-scrollview-pager>
|
|
628
|
+
}
|
|
578
629
|
</div>
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
<span
|
|
584
|
-
#prevButton
|
|
585
|
-
class="k-scrollview-prev"
|
|
586
|
-
role="button"
|
|
587
|
-
[attr.aria-controls]="scrollviewId"
|
|
588
|
-
aria-label="previous"
|
|
589
|
-
*ngIf="arrows && displayLeftArrow()"
|
|
590
|
-
(click)="leftArrowClick()">
|
|
591
|
-
<kendo-icon-wrapper
|
|
592
|
-
size="xxxlarge"
|
|
593
|
-
[name]="prevButtonArrowIcon"
|
|
594
|
-
[svgIcon]="prevButtonArrowSVGIcon"
|
|
595
|
-
>
|
|
596
|
-
</kendo-icon-wrapper>
|
|
597
|
-
</span>
|
|
598
|
-
<span
|
|
599
|
-
#nextButton
|
|
600
|
-
class="k-scrollview-next"
|
|
601
|
-
role="button"
|
|
602
|
-
[attr.aria-controls]="scrollviewId"
|
|
603
|
-
aria-label="next"
|
|
604
|
-
*ngIf="arrows && displayRightArrow()"
|
|
605
|
-
(click)="rightArrowClick()">
|
|
606
|
-
<kendo-icon-wrapper
|
|
607
|
-
size="xxxlarge"
|
|
608
|
-
[name]="nextButtonArrowIcon"
|
|
609
|
-
[svgIcon]="nextButtonArrowSVGIcon"
|
|
610
|
-
>
|
|
611
|
-
</kendo-icon-wrapper>
|
|
612
|
-
</span>
|
|
613
|
-
<kendo-scrollview-pager
|
|
614
|
-
class='k-scrollview-nav-wrap'
|
|
615
|
-
*ngIf="pageable"
|
|
616
|
-
(pagerIndexChange)="pageChange($event)"
|
|
617
|
-
[data]="data"
|
|
618
|
-
[activeIndex]="activeIndex">
|
|
619
|
-
</kendo-scrollview-pager>
|
|
620
|
-
</div>
|
|
621
|
-
<div class="k-sr-only" aria-live="polite"></div>
|
|
622
|
-
`,
|
|
630
|
+
}
|
|
631
|
+
<div class="k-sr-only" aria-live="polite"></div>
|
|
632
|
+
`,
|
|
623
633
|
standalone: true,
|
|
624
|
-
imports: [LocalizedMessagesDirective, DraggableDirective,
|
|
634
|
+
imports: [LocalizedMessagesDirective, DraggableDirective, NgStyle, NgTemplateOutlet, IconWrapperComponent, ScrollViewPagerComponent]
|
|
625
635
|
}]
|
|
626
636
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.LocalizationService }, { type: i0.NgZone }, { type: i0.Renderer2 }], propDecorators: { data: [{
|
|
627
637
|
type: Input
|
|
@@ -11,7 +11,7 @@ import * as i1 from '@progress/kendo-angular-l10n';
|
|
|
11
11
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
12
12
|
import { chevronLeftIcon, chevronRightIcon } from '@progress/kendo-svg-icons';
|
|
13
13
|
import { Subscription } from 'rxjs';
|
|
14
|
-
import {
|
|
14
|
+
import { NgClass, NgStyle, NgTemplateOutlet } from '@angular/common';
|
|
15
15
|
import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
16
16
|
|
|
17
17
|
/**
|
|
@@ -31,8 +31,8 @@ const packageMetadata = {
|
|
|
31
31
|
productName: 'Kendo UI for Angular',
|
|
32
32
|
productCode: 'KENDOUIANGULAR',
|
|
33
33
|
productCodes: ['KENDOUIANGULAR'],
|
|
34
|
-
publishDate:
|
|
35
|
-
version: '21.
|
|
34
|
+
publishDate: 1763998490,
|
|
35
|
+
version: '21.2.0-develop.1',
|
|
36
36
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
37
37
|
};
|
|
38
38
|
|
|
@@ -151,14 +151,16 @@ class ScrollViewPagerComponent {
|
|
|
151
151
|
return replaceMessagePlaceholder(localizationMsg, 'itemIndex', itemIndex.toString());
|
|
152
152
|
}
|
|
153
153
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollViewPagerComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
154
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
154
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ScrollViewPagerComponent, isStandalone: true, selector: "kendo-scrollview-pager", inputs: { activeIndex: "activeIndex", data: "data" }, outputs: { pagerIndexChange: "pagerIndexChange" }, ngImport: i0, template: `
|
|
155
155
|
<div class="k-scrollview-nav">
|
|
156
|
-
|
|
156
|
+
@for (item of data; track $index; let i = $index) {
|
|
157
|
+
<span [attr.aria-label]="pagerButtonLabel(i + 1)" role="button" class="k-link"
|
|
157
158
|
[ngClass]="itemClass(i)"
|
|
158
159
|
(click)="indexChange(i)">
|
|
159
|
-
|
|
160
|
+
</span>
|
|
161
|
+
}
|
|
160
162
|
</div>
|
|
161
|
-
|
|
163
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
162
164
|
}
|
|
163
165
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollViewPagerComponent, decorators: [{
|
|
164
166
|
type: Component,
|
|
@@ -166,14 +168,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
166
168
|
selector: 'kendo-scrollview-pager',
|
|
167
169
|
template: `
|
|
168
170
|
<div class="k-scrollview-nav">
|
|
169
|
-
|
|
171
|
+
@for (item of data; track $index; let i = $index) {
|
|
172
|
+
<span [attr.aria-label]="pagerButtonLabel(i + 1)" role="button" class="k-link"
|
|
170
173
|
[ngClass]="itemClass(i)"
|
|
171
174
|
(click)="indexChange(i)">
|
|
172
|
-
|
|
175
|
+
</span>
|
|
176
|
+
}
|
|
173
177
|
</div>
|
|
174
|
-
|
|
178
|
+
`,
|
|
175
179
|
standalone: true,
|
|
176
|
-
imports: [
|
|
180
|
+
imports: [NgClass]
|
|
177
181
|
}]
|
|
178
182
|
}], ctorParameters: () => [{ type: i1.LocalizationService }], propDecorators: { activeIndex: [{
|
|
179
183
|
type: Input
|
|
@@ -642,7 +646,7 @@ class ScrollViewComponent {
|
|
|
642
646
|
return this.direction === 'ltr' ? this.chevronRightIcon : this.chevronLeftIcon;
|
|
643
647
|
}
|
|
644
648
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ScrollViewComponent, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
645
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
649
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.14", type: ScrollViewComponent, isStandalone: true, selector: "kendo-scrollview", inputs: { data: "data", activeIndex: "activeIndex", width: "width", height: "height", endless: "endless", pagerOverlay: "pagerOverlay", animate: "animate", pageable: "pageable", arrows: "arrows" }, outputs: { itemChanged: "itemChanged", activeIndexChange: "activeIndexChange" }, host: { properties: { "class.k-scrollview": "this.scrollViewClass", "attr.role": "this.scrollViewRole", "attr.aria-roledescription": "this.scrollViewRoleDescription", "class.k-scrollview-light": "this.scrollViewLightOverlayClass", "class.k-scrollview-dark": "this.scrollViewDarkOverlayClass", "style.width": "this.hostWidth", "style.height": "this.hostHeight", "attr.tabindex": "this.tabIndex", "attr.aria-live": "this.ariaLive", "attr.dir": "this.dir", "style.touch-action": "this.touchAction" } }, providers: [
|
|
646
650
|
LocalizationService,
|
|
647
651
|
{
|
|
648
652
|
provide: L10N_PREFIX,
|
|
@@ -650,79 +654,84 @@ class ScrollViewComponent {
|
|
|
650
654
|
}
|
|
651
655
|
], queries: [{ propertyName: "itemTemplateRef", first: true, predicate: TemplateRef, descendants: true }], viewQueries: [{ propertyName: "itemWrapper", first: true, predicate: ["itemWrapper"], descendants: true }, { propertyName: "prevButton", first: true, predicate: ["prevButton"], descendants: true }, { propertyName: "nextButton", first: true, predicate: ["nextButton"], descendants: true }], exportAs: ["kendoScrollView"], usesOnChanges: true, ngImport: i0, template: `
|
|
652
656
|
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
+
<ng-container kendoScrollViewLocalizedMessages
|
|
658
|
+
i18n-pagerButtonLabel="kendo.scrollview.pagerButtonLabel|The label for the buttons inside the ScrollView Pager"
|
|
659
|
+
pagerButtonLabel="{{ 'Item {itemIndex}' }}">
|
|
660
|
+
<ng-container>
|
|
657
661
|
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
662
|
+
<div class="k-scrollview-wrap k-scrollview-animate"
|
|
663
|
+
#itemWrapper
|
|
664
|
+
role="list"
|
|
665
|
+
[id]="scrollviewId"
|
|
666
|
+
[@animateTo]="animationState"
|
|
667
|
+
(@animateTo.done)="transitionEndHandler($event)"
|
|
668
|
+
kendoDraggable
|
|
669
|
+
(kendoDrag)="handleDrag($event)"
|
|
670
|
+
(kendoPress)="handlePress($event)"
|
|
671
|
+
(kendoRelease)="handleRelease($event)"
|
|
672
|
+
>
|
|
673
|
+
@for (item of view; track $index; let i = $index) {
|
|
674
|
+
<div class="k-scrollview-view"
|
|
675
|
+
role="listitem"
|
|
676
|
+
aria-roledescription="slide"
|
|
677
|
+
[ngStyle]="inlineListItemStyles(i)"
|
|
678
|
+
[attr.aria-hidden]="i !== 1"
|
|
679
|
+
>
|
|
680
|
+
<ng-template
|
|
681
|
+
[ngTemplateOutlet]="itemTemplateRef"
|
|
682
|
+
[ngTemplateOutletContext]="{ item: item }">
|
|
683
|
+
</ng-template>
|
|
684
|
+
</div>
|
|
685
|
+
}
|
|
686
|
+
</div>
|
|
687
|
+
@if (!isDataSourceEmpty && (pageable || arrows)) {
|
|
688
|
+
<div class='k-scrollview-elements'
|
|
689
|
+
[ngStyle]="{'height': height}"
|
|
668
690
|
>
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
691
|
+
@if (arrows && displayLeftArrow()) {
|
|
692
|
+
<span
|
|
693
|
+
#prevButton
|
|
694
|
+
class="k-scrollview-prev"
|
|
695
|
+
role="button"
|
|
696
|
+
[attr.aria-controls]="scrollviewId"
|
|
697
|
+
aria-label="previous"
|
|
698
|
+
(click)="leftArrowClick()">
|
|
699
|
+
<kendo-icon-wrapper
|
|
700
|
+
size="xxxlarge"
|
|
701
|
+
[name]="prevButtonArrowIcon"
|
|
702
|
+
[svgIcon]="prevButtonArrowSVGIcon"
|
|
703
|
+
>
|
|
704
|
+
</kendo-icon-wrapper>
|
|
705
|
+
</span>
|
|
706
|
+
}
|
|
707
|
+
@if (arrows && displayRightArrow()) {
|
|
708
|
+
<span
|
|
709
|
+
#nextButton
|
|
710
|
+
class="k-scrollview-next"
|
|
711
|
+
role="button"
|
|
712
|
+
[attr.aria-controls]="scrollviewId"
|
|
713
|
+
aria-label="next"
|
|
714
|
+
(click)="rightArrowClick()">
|
|
715
|
+
<kendo-icon-wrapper
|
|
716
|
+
size="xxxlarge"
|
|
717
|
+
[name]="nextButtonArrowIcon"
|
|
718
|
+
[svgIcon]="nextButtonArrowSVGIcon"
|
|
719
|
+
>
|
|
720
|
+
</kendo-icon-wrapper>
|
|
721
|
+
</span>
|
|
722
|
+
}
|
|
723
|
+
@if (pageable) {
|
|
724
|
+
<kendo-scrollview-pager
|
|
725
|
+
class='k-scrollview-nav-wrap'
|
|
726
|
+
(pagerIndexChange)="pageChange($event)"
|
|
727
|
+
[data]="data"
|
|
728
|
+
[activeIndex]="activeIndex">
|
|
729
|
+
</kendo-scrollview-pager>
|
|
730
|
+
}
|
|
681
731
|
</div>
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
<span
|
|
687
|
-
#prevButton
|
|
688
|
-
class="k-scrollview-prev"
|
|
689
|
-
role="button"
|
|
690
|
-
[attr.aria-controls]="scrollviewId"
|
|
691
|
-
aria-label="previous"
|
|
692
|
-
*ngIf="arrows && displayLeftArrow()"
|
|
693
|
-
(click)="leftArrowClick()">
|
|
694
|
-
<kendo-icon-wrapper
|
|
695
|
-
size="xxxlarge"
|
|
696
|
-
[name]="prevButtonArrowIcon"
|
|
697
|
-
[svgIcon]="prevButtonArrowSVGIcon"
|
|
698
|
-
>
|
|
699
|
-
</kendo-icon-wrapper>
|
|
700
|
-
</span>
|
|
701
|
-
<span
|
|
702
|
-
#nextButton
|
|
703
|
-
class="k-scrollview-next"
|
|
704
|
-
role="button"
|
|
705
|
-
[attr.aria-controls]="scrollviewId"
|
|
706
|
-
aria-label="next"
|
|
707
|
-
*ngIf="arrows && displayRightArrow()"
|
|
708
|
-
(click)="rightArrowClick()">
|
|
709
|
-
<kendo-icon-wrapper
|
|
710
|
-
size="xxxlarge"
|
|
711
|
-
[name]="nextButtonArrowIcon"
|
|
712
|
-
[svgIcon]="nextButtonArrowSVGIcon"
|
|
713
|
-
>
|
|
714
|
-
</kendo-icon-wrapper>
|
|
715
|
-
</span>
|
|
716
|
-
<kendo-scrollview-pager
|
|
717
|
-
class='k-scrollview-nav-wrap'
|
|
718
|
-
*ngIf="pageable"
|
|
719
|
-
(pagerIndexChange)="pageChange($event)"
|
|
720
|
-
[data]="data"
|
|
721
|
-
[activeIndex]="activeIndex">
|
|
722
|
-
</kendo-scrollview-pager>
|
|
723
|
-
</div>
|
|
724
|
-
<div class="k-sr-only" aria-live="polite"></div>
|
|
725
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoScrollViewLocalizedMessages]" }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ScrollViewPagerComponent, selector: "kendo-scrollview-pager", inputs: ["activeIndex", "data"], outputs: ["pagerIndexChange"] }], animations: [
|
|
732
|
+
}
|
|
733
|
+
<div class="k-sr-only" aria-live="polite"></div>
|
|
734
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoScrollViewLocalizedMessages]" }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "component", type: ScrollViewPagerComponent, selector: "kendo-scrollview-pager", inputs: ["activeIndex", "data"], outputs: ["pagerIndexChange"] }], animations: [
|
|
726
735
|
trigger('animateTo', [
|
|
727
736
|
state('center, left, right', style({ transform: 'translateX(0)' })),
|
|
728
737
|
transition('* => right', [
|
|
@@ -765,81 +774,86 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
765
774
|
selector: 'kendo-scrollview',
|
|
766
775
|
template: `
|
|
767
776
|
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
777
|
+
<ng-container kendoScrollViewLocalizedMessages
|
|
778
|
+
i18n-pagerButtonLabel="kendo.scrollview.pagerButtonLabel|The label for the buttons inside the ScrollView Pager"
|
|
779
|
+
pagerButtonLabel="{{ 'Item {itemIndex}' }}">
|
|
780
|
+
<ng-container>
|
|
772
781
|
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
782
|
+
<div class="k-scrollview-wrap k-scrollview-animate"
|
|
783
|
+
#itemWrapper
|
|
784
|
+
role="list"
|
|
785
|
+
[id]="scrollviewId"
|
|
786
|
+
[@animateTo]="animationState"
|
|
787
|
+
(@animateTo.done)="transitionEndHandler($event)"
|
|
788
|
+
kendoDraggable
|
|
789
|
+
(kendoDrag)="handleDrag($event)"
|
|
790
|
+
(kendoPress)="handlePress($event)"
|
|
791
|
+
(kendoRelease)="handleRelease($event)"
|
|
792
|
+
>
|
|
793
|
+
@for (item of view; track $index; let i = $index) {
|
|
794
|
+
<div class="k-scrollview-view"
|
|
795
|
+
role="listitem"
|
|
796
|
+
aria-roledescription="slide"
|
|
797
|
+
[ngStyle]="inlineListItemStyles(i)"
|
|
798
|
+
[attr.aria-hidden]="i !== 1"
|
|
799
|
+
>
|
|
800
|
+
<ng-template
|
|
801
|
+
[ngTemplateOutlet]="itemTemplateRef"
|
|
802
|
+
[ngTemplateOutletContext]="{ item: item }">
|
|
803
|
+
</ng-template>
|
|
804
|
+
</div>
|
|
805
|
+
}
|
|
806
|
+
</div>
|
|
807
|
+
@if (!isDataSourceEmpty && (pageable || arrows)) {
|
|
808
|
+
<div class='k-scrollview-elements'
|
|
809
|
+
[ngStyle]="{'height': height}"
|
|
783
810
|
>
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
811
|
+
@if (arrows && displayLeftArrow()) {
|
|
812
|
+
<span
|
|
813
|
+
#prevButton
|
|
814
|
+
class="k-scrollview-prev"
|
|
815
|
+
role="button"
|
|
816
|
+
[attr.aria-controls]="scrollviewId"
|
|
817
|
+
aria-label="previous"
|
|
818
|
+
(click)="leftArrowClick()">
|
|
819
|
+
<kendo-icon-wrapper
|
|
820
|
+
size="xxxlarge"
|
|
821
|
+
[name]="prevButtonArrowIcon"
|
|
822
|
+
[svgIcon]="prevButtonArrowSVGIcon"
|
|
823
|
+
>
|
|
824
|
+
</kendo-icon-wrapper>
|
|
825
|
+
</span>
|
|
826
|
+
}
|
|
827
|
+
@if (arrows && displayRightArrow()) {
|
|
828
|
+
<span
|
|
829
|
+
#nextButton
|
|
830
|
+
class="k-scrollview-next"
|
|
831
|
+
role="button"
|
|
832
|
+
[attr.aria-controls]="scrollviewId"
|
|
833
|
+
aria-label="next"
|
|
834
|
+
(click)="rightArrowClick()">
|
|
835
|
+
<kendo-icon-wrapper
|
|
836
|
+
size="xxxlarge"
|
|
837
|
+
[name]="nextButtonArrowIcon"
|
|
838
|
+
[svgIcon]="nextButtonArrowSVGIcon"
|
|
839
|
+
>
|
|
840
|
+
</kendo-icon-wrapper>
|
|
841
|
+
</span>
|
|
842
|
+
}
|
|
843
|
+
@if (pageable) {
|
|
844
|
+
<kendo-scrollview-pager
|
|
845
|
+
class='k-scrollview-nav-wrap'
|
|
846
|
+
(pagerIndexChange)="pageChange($event)"
|
|
847
|
+
[data]="data"
|
|
848
|
+
[activeIndex]="activeIndex">
|
|
849
|
+
</kendo-scrollview-pager>
|
|
850
|
+
}
|
|
796
851
|
</div>
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
<span
|
|
802
|
-
#prevButton
|
|
803
|
-
class="k-scrollview-prev"
|
|
804
|
-
role="button"
|
|
805
|
-
[attr.aria-controls]="scrollviewId"
|
|
806
|
-
aria-label="previous"
|
|
807
|
-
*ngIf="arrows && displayLeftArrow()"
|
|
808
|
-
(click)="leftArrowClick()">
|
|
809
|
-
<kendo-icon-wrapper
|
|
810
|
-
size="xxxlarge"
|
|
811
|
-
[name]="prevButtonArrowIcon"
|
|
812
|
-
[svgIcon]="prevButtonArrowSVGIcon"
|
|
813
|
-
>
|
|
814
|
-
</kendo-icon-wrapper>
|
|
815
|
-
</span>
|
|
816
|
-
<span
|
|
817
|
-
#nextButton
|
|
818
|
-
class="k-scrollview-next"
|
|
819
|
-
role="button"
|
|
820
|
-
[attr.aria-controls]="scrollviewId"
|
|
821
|
-
aria-label="next"
|
|
822
|
-
*ngIf="arrows && displayRightArrow()"
|
|
823
|
-
(click)="rightArrowClick()">
|
|
824
|
-
<kendo-icon-wrapper
|
|
825
|
-
size="xxxlarge"
|
|
826
|
-
[name]="nextButtonArrowIcon"
|
|
827
|
-
[svgIcon]="nextButtonArrowSVGIcon"
|
|
828
|
-
>
|
|
829
|
-
</kendo-icon-wrapper>
|
|
830
|
-
</span>
|
|
831
|
-
<kendo-scrollview-pager
|
|
832
|
-
class='k-scrollview-nav-wrap'
|
|
833
|
-
*ngIf="pageable"
|
|
834
|
-
(pagerIndexChange)="pageChange($event)"
|
|
835
|
-
[data]="data"
|
|
836
|
-
[activeIndex]="activeIndex">
|
|
837
|
-
</kendo-scrollview-pager>
|
|
838
|
-
</div>
|
|
839
|
-
<div class="k-sr-only" aria-live="polite"></div>
|
|
840
|
-
`,
|
|
852
|
+
}
|
|
853
|
+
<div class="k-sr-only" aria-live="polite"></div>
|
|
854
|
+
`,
|
|
841
855
|
standalone: true,
|
|
842
|
-
imports: [LocalizedMessagesDirective, DraggableDirective,
|
|
856
|
+
imports: [LocalizedMessagesDirective, DraggableDirective, NgStyle, NgTemplateOutlet, IconWrapperComponent, ScrollViewPagerComponent]
|
|
843
857
|
}]
|
|
844
858
|
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.LocalizationService }, { type: i0.NgZone }, { type: i0.Renderer2 }], propDecorators: { data: [{
|
|
845
859
|
type: Input
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-scrollview",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.2.0-develop.1",
|
|
4
4
|
"description": "A ScrollView Component for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1763998490,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"@angular/core": "18 - 21",
|
|
30
30
|
"@angular/platform-browser": "18 - 21",
|
|
31
31
|
"@progress/kendo-licensing": "^1.7.0",
|
|
32
|
-
"@progress/kendo-angular-common": "21.
|
|
33
|
-
"@progress/kendo-angular-l10n": "21.
|
|
34
|
-
"@progress/kendo-angular-icons": "21.
|
|
32
|
+
"@progress/kendo-angular-common": "21.2.0-develop.1",
|
|
33
|
+
"@progress/kendo-angular-l10n": "21.2.0-develop.1",
|
|
34
|
+
"@progress/kendo-angular-icons": "21.2.0-develop.1",
|
|
35
35
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.3.1",
|
|
39
|
-
"@progress/kendo-angular-schematics": "21.
|
|
39
|
+
"@progress/kendo-angular-schematics": "21.2.0-develop.1"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
42
42
|
"module": "fesm2022/progress-kendo-angular-scrollview.mjs",
|