@progress/kendo-angular-inputs 15.4.0-develop.5 → 15.4.0-develop.6
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/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rating/directives/rating-hovered-item.directive.mjs +1 -0
- package/esm2020/rating/directives/rating-item.directive.mjs +1 -0
- package/esm2020/rating/directives/rating-selected-item.directive.mjs +1 -0
- package/esm2020/rating/rating.component.mjs +12 -0
- package/fesm2015/progress-kendo-angular-inputs.mjs +17 -2
- package/fesm2020/progress-kendo-angular-inputs.mjs +17 -2
- package/package.json +10 -10
- package/rating/directives/rating-hovered-item.directive.d.ts +1 -0
- package/rating/directives/rating-item.directive.d.ts +1 -0
- package/rating/directives/rating-selected-item.directive.d.ts +1 -0
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-inputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '15.4.0-develop.
|
|
12
|
+
publishDate: 1711965024,
|
|
13
|
+
version: '15.4.0-develop.6',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the hovered rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
10
|
* [see example]({% slug templates_rating %}#toc-hovered-item-template).
|
|
11
|
+
* The index of the currently hovered item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
12
|
*/
|
|
12
13
|
export class RatingHoveredItemTemplateDirective {
|
|
13
14
|
constructor(templateRef) {
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
10
|
* [see example]({% slug templates_rating %}#toc-item-template).
|
|
11
|
+
* The index of the current item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
12
|
*/
|
|
12
13
|
export class RatingItemTemplateDirective {
|
|
13
14
|
constructor(templateRef) {
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the selected rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
10
|
* [see example]({% slug templates_rating %}#toc-selected-item-template).
|
|
11
|
+
* The index of the currently selected item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
12
|
*/
|
|
12
13
|
export class RatingSelectedItemTemplateDirective {
|
|
13
14
|
constructor(templateRef) {
|
|
@@ -390,18 +390,21 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
390
390
|
<ng-template
|
|
391
391
|
*ngIf="itemTemplate && (!item.selected && !item.hovered)"
|
|
392
392
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
393
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
393
394
|
>
|
|
394
395
|
</ng-template>
|
|
395
396
|
|
|
396
397
|
<ng-template
|
|
397
398
|
*ngIf="hoveredItemTemplate && item.hovered"
|
|
398
399
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
400
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
399
401
|
>
|
|
400
402
|
</ng-template>
|
|
401
403
|
|
|
402
404
|
<ng-template
|
|
403
405
|
*ngIf="selectedItemTemplate && (item.selected && !item.hovered)"
|
|
404
406
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
407
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
405
408
|
>
|
|
406
409
|
</ng-template>
|
|
407
410
|
</ng-container>
|
|
@@ -451,6 +454,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
451
454
|
>
|
|
452
455
|
<ng-template
|
|
453
456
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
457
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
454
458
|
>
|
|
455
459
|
</ng-template>
|
|
456
460
|
</span>
|
|
@@ -462,6 +466,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
462
466
|
>
|
|
463
467
|
<ng-template
|
|
464
468
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
469
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
465
470
|
>
|
|
466
471
|
</ng-template>
|
|
467
472
|
</span>
|
|
@@ -473,6 +478,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
473
478
|
>
|
|
474
479
|
<ng-template
|
|
475
480
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
481
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
476
482
|
>
|
|
477
483
|
</ng-template>
|
|
478
484
|
</span>
|
|
@@ -540,18 +546,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
540
546
|
<ng-template
|
|
541
547
|
*ngIf="itemTemplate && (!item.selected && !item.hovered)"
|
|
542
548
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
549
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
543
550
|
>
|
|
544
551
|
</ng-template>
|
|
545
552
|
|
|
546
553
|
<ng-template
|
|
547
554
|
*ngIf="hoveredItemTemplate && item.hovered"
|
|
548
555
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
556
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
549
557
|
>
|
|
550
558
|
</ng-template>
|
|
551
559
|
|
|
552
560
|
<ng-template
|
|
553
561
|
*ngIf="selectedItemTemplate && (item.selected && !item.hovered)"
|
|
554
562
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
563
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
555
564
|
>
|
|
556
565
|
</ng-template>
|
|
557
566
|
</ng-container>
|
|
@@ -601,6 +610,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
601
610
|
>
|
|
602
611
|
<ng-template
|
|
603
612
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
613
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
604
614
|
>
|
|
605
615
|
</ng-template>
|
|
606
616
|
</span>
|
|
@@ -612,6 +622,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
612
622
|
>
|
|
613
623
|
<ng-template
|
|
614
624
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
625
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
615
626
|
>
|
|
616
627
|
</ng-template>
|
|
617
628
|
</span>
|
|
@@ -623,6 +634,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
623
634
|
>
|
|
624
635
|
<ng-template
|
|
625
636
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
637
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
626
638
|
>
|
|
627
639
|
</ng-template>
|
|
628
640
|
</span>
|
|
@@ -538,8 +538,8 @@ const packageMetadata = {
|
|
|
538
538
|
name: '@progress/kendo-angular-inputs',
|
|
539
539
|
productName: 'Kendo UI for Angular',
|
|
540
540
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
541
|
-
publishDate:
|
|
542
|
-
version: '15.4.0-develop.
|
|
541
|
+
publishDate: 1711965024,
|
|
542
|
+
version: '15.4.0-develop.6',
|
|
543
543
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
544
544
|
};
|
|
545
545
|
|
|
@@ -15576,6 +15576,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15576
15576
|
* Renders the rating item content. To define an item template, nest an `<ng-template>` tag
|
|
15577
15577
|
* with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag
|
|
15578
15578
|
* [see example]({% slug templates_rating %}#toc-item-template).
|
|
15579
|
+
* The index of the current item is available as an implicit context using the `let-index="index"` syntax.
|
|
15579
15580
|
*/
|
|
15580
15581
|
class RatingItemTemplateDirective {
|
|
15581
15582
|
constructor(templateRef) {
|
|
@@ -15595,6 +15596,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15595
15596
|
* Renders the hovered rating item content. To define an item template, nest an `<ng-template>` tag
|
|
15596
15597
|
* with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag
|
|
15597
15598
|
* [see example]({% slug templates_rating %}#toc-hovered-item-template).
|
|
15599
|
+
* The index of the currently hovered item is available as an implicit context using the `let-index="index"` syntax.
|
|
15598
15600
|
*/
|
|
15599
15601
|
class RatingHoveredItemTemplateDirective {
|
|
15600
15602
|
constructor(templateRef) {
|
|
@@ -15614,6 +15616,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15614
15616
|
* Renders the selected rating item content. To define an item template, nest an `<ng-template>` tag
|
|
15615
15617
|
* with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag
|
|
15616
15618
|
* [see example]({% slug templates_rating %}#toc-selected-item-template).
|
|
15619
|
+
* The index of the currently selected item is available as an implicit context using the `let-index="index"` syntax.
|
|
15617
15620
|
*/
|
|
15618
15621
|
class RatingSelectedItemTemplateDirective {
|
|
15619
15622
|
constructor(templateRef) {
|
|
@@ -16002,18 +16005,21 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16002
16005
|
<ng-template
|
|
16003
16006
|
*ngIf="itemTemplate && (!item.selected && !item.hovered)"
|
|
16004
16007
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16008
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16005
16009
|
>
|
|
16006
16010
|
</ng-template>
|
|
16007
16011
|
|
|
16008
16012
|
<ng-template
|
|
16009
16013
|
*ngIf="hoveredItemTemplate && item.hovered"
|
|
16010
16014
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16015
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16011
16016
|
>
|
|
16012
16017
|
</ng-template>
|
|
16013
16018
|
|
|
16014
16019
|
<ng-template
|
|
16015
16020
|
*ngIf="selectedItemTemplate && (item.selected && !item.hovered)"
|
|
16016
16021
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16022
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16017
16023
|
>
|
|
16018
16024
|
</ng-template>
|
|
16019
16025
|
</ng-container>
|
|
@@ -16063,6 +16069,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16063
16069
|
>
|
|
16064
16070
|
<ng-template
|
|
16065
16071
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16072
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16066
16073
|
>
|
|
16067
16074
|
</ng-template>
|
|
16068
16075
|
</span>
|
|
@@ -16074,6 +16081,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16074
16081
|
>
|
|
16075
16082
|
<ng-template
|
|
16076
16083
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16084
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16077
16085
|
>
|
|
16078
16086
|
</ng-template>
|
|
16079
16087
|
</span>
|
|
@@ -16085,6 +16093,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16085
16093
|
>
|
|
16086
16094
|
<ng-template
|
|
16087
16095
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16096
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16088
16097
|
>
|
|
16089
16098
|
</ng-template>
|
|
16090
16099
|
</span>
|
|
@@ -16152,18 +16161,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16152
16161
|
<ng-template
|
|
16153
16162
|
*ngIf="itemTemplate && (!item.selected && !item.hovered)"
|
|
16154
16163
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16164
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16155
16165
|
>
|
|
16156
16166
|
</ng-template>
|
|
16157
16167
|
|
|
16158
16168
|
<ng-template
|
|
16159
16169
|
*ngIf="hoveredItemTemplate && item.hovered"
|
|
16160
16170
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16171
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16161
16172
|
>
|
|
16162
16173
|
</ng-template>
|
|
16163
16174
|
|
|
16164
16175
|
<ng-template
|
|
16165
16176
|
*ngIf="selectedItemTemplate && (item.selected && !item.hovered)"
|
|
16166
16177
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16178
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16167
16179
|
>
|
|
16168
16180
|
</ng-template>
|
|
16169
16181
|
</ng-container>
|
|
@@ -16213,6 +16225,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16213
16225
|
>
|
|
16214
16226
|
<ng-template
|
|
16215
16227
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16228
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16216
16229
|
>
|
|
16217
16230
|
</ng-template>
|
|
16218
16231
|
</span>
|
|
@@ -16224,6 +16237,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16224
16237
|
>
|
|
16225
16238
|
<ng-template
|
|
16226
16239
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16240
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16227
16241
|
>
|
|
16228
16242
|
</ng-template>
|
|
16229
16243
|
</span>
|
|
@@ -16235,6 +16249,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16235
16249
|
>
|
|
16236
16250
|
<ng-template
|
|
16237
16251
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16252
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16238
16253
|
>
|
|
16239
16254
|
</ng-template>
|
|
16240
16255
|
</span>
|
|
@@ -537,8 +537,8 @@ const packageMetadata = {
|
|
|
537
537
|
name: '@progress/kendo-angular-inputs',
|
|
538
538
|
productName: 'Kendo UI for Angular',
|
|
539
539
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
540
|
-
publishDate:
|
|
541
|
-
version: '15.4.0-develop.
|
|
540
|
+
publishDate: 1711965024,
|
|
541
|
+
version: '15.4.0-develop.6',
|
|
542
542
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
543
543
|
};
|
|
544
544
|
|
|
@@ -15541,6 +15541,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15541
15541
|
* Renders the rating item content. To define an item template, nest an `<ng-template>` tag
|
|
15542
15542
|
* with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag
|
|
15543
15543
|
* [see example]({% slug templates_rating %}#toc-item-template).
|
|
15544
|
+
* The index of the current item is available as an implicit context using the `let-index="index"` syntax.
|
|
15544
15545
|
*/
|
|
15545
15546
|
class RatingItemTemplateDirective {
|
|
15546
15547
|
constructor(templateRef) {
|
|
@@ -15560,6 +15561,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15560
15561
|
* Renders the hovered rating item content. To define an item template, nest an `<ng-template>` tag
|
|
15561
15562
|
* with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag
|
|
15562
15563
|
* [see example]({% slug templates_rating %}#toc-hovered-item-template).
|
|
15564
|
+
* The index of the currently hovered item is available as an implicit context using the `let-index="index"` syntax.
|
|
15563
15565
|
*/
|
|
15564
15566
|
class RatingHoveredItemTemplateDirective {
|
|
15565
15567
|
constructor(templateRef) {
|
|
@@ -15579,6 +15581,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
15579
15581
|
* Renders the selected rating item content. To define an item template, nest an `<ng-template>` tag
|
|
15580
15582
|
* with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag
|
|
15581
15583
|
* [see example]({% slug templates_rating %}#toc-selected-item-template).
|
|
15584
|
+
* The index of the currently selected item is available as an implicit context using the `let-index="index"` syntax.
|
|
15582
15585
|
*/
|
|
15583
15586
|
class RatingSelectedItemTemplateDirective {
|
|
15584
15587
|
constructor(templateRef) {
|
|
@@ -15966,18 +15969,21 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
15966
15969
|
<ng-template
|
|
15967
15970
|
*ngIf="itemTemplate && (!item.selected && !item.hovered)"
|
|
15968
15971
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
15972
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
15969
15973
|
>
|
|
15970
15974
|
</ng-template>
|
|
15971
15975
|
|
|
15972
15976
|
<ng-template
|
|
15973
15977
|
*ngIf="hoveredItemTemplate && item.hovered"
|
|
15974
15978
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
15979
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
15975
15980
|
>
|
|
15976
15981
|
</ng-template>
|
|
15977
15982
|
|
|
15978
15983
|
<ng-template
|
|
15979
15984
|
*ngIf="selectedItemTemplate && (item.selected && !item.hovered)"
|
|
15980
15985
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
15986
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
15981
15987
|
>
|
|
15982
15988
|
</ng-template>
|
|
15983
15989
|
</ng-container>
|
|
@@ -16027,6 +16033,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16027
16033
|
>
|
|
16028
16034
|
<ng-template
|
|
16029
16035
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16036
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16030
16037
|
>
|
|
16031
16038
|
</ng-template>
|
|
16032
16039
|
</span>
|
|
@@ -16038,6 +16045,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16038
16045
|
>
|
|
16039
16046
|
<ng-template
|
|
16040
16047
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16048
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16041
16049
|
>
|
|
16042
16050
|
</ng-template>
|
|
16043
16051
|
</span>
|
|
@@ -16049,6 +16057,7 @@ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
16049
16057
|
>
|
|
16050
16058
|
<ng-template
|
|
16051
16059
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16060
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16052
16061
|
>
|
|
16053
16062
|
</ng-template>
|
|
16054
16063
|
</span>
|
|
@@ -16116,18 +16125,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16116
16125
|
<ng-template
|
|
16117
16126
|
*ngIf="itemTemplate && (!item.selected && !item.hovered)"
|
|
16118
16127
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16128
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16119
16129
|
>
|
|
16120
16130
|
</ng-template>
|
|
16121
16131
|
|
|
16122
16132
|
<ng-template
|
|
16123
16133
|
*ngIf="hoveredItemTemplate && item.hovered"
|
|
16124
16134
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16135
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16125
16136
|
>
|
|
16126
16137
|
</ng-template>
|
|
16127
16138
|
|
|
16128
16139
|
<ng-template
|
|
16129
16140
|
*ngIf="selectedItemTemplate && (item.selected && !item.hovered)"
|
|
16130
16141
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16142
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16131
16143
|
>
|
|
16132
16144
|
</ng-template>
|
|
16133
16145
|
</ng-container>
|
|
@@ -16177,6 +16189,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16177
16189
|
>
|
|
16178
16190
|
<ng-template
|
|
16179
16191
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
16192
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16180
16193
|
>
|
|
16181
16194
|
</ng-template>
|
|
16182
16195
|
</span>
|
|
@@ -16188,6 +16201,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16188
16201
|
>
|
|
16189
16202
|
<ng-template
|
|
16190
16203
|
[ngTemplateOutlet]="hoveredItemTemplate?.templateRef"
|
|
16204
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16191
16205
|
>
|
|
16192
16206
|
</ng-template>
|
|
16193
16207
|
</span>
|
|
@@ -16199,6 +16213,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
16199
16213
|
>
|
|
16200
16214
|
<ng-template
|
|
16201
16215
|
[ngTemplateOutlet]="selectedItemTemplate?.templateRef"
|
|
16216
|
+
[ngTemplateOutletContext]="{index: i}"
|
|
16202
16217
|
>
|
|
16203
16218
|
</ng-template>
|
|
16204
16219
|
</span>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "15.4.0-develop.
|
|
3
|
+
"version": "15.4.0-develop.6",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"@angular/platform-browser": "13 - 17",
|
|
35
35
|
"@progress/kendo-drawing": "^1.19.0",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "15.4.0-develop.
|
|
38
|
-
"@progress/kendo-angular-common": "15.4.0-develop.
|
|
39
|
-
"@progress/kendo-angular-dialog": "15.4.0-develop.
|
|
40
|
-
"@progress/kendo-angular-intl": "15.4.0-develop.
|
|
41
|
-
"@progress/kendo-angular-l10n": "15.4.0-develop.
|
|
42
|
-
"@progress/kendo-angular-popup": "15.4.0-develop.
|
|
43
|
-
"@progress/kendo-angular-icons": "15.4.0-develop.
|
|
37
|
+
"@progress/kendo-angular-buttons": "15.4.0-develop.6",
|
|
38
|
+
"@progress/kendo-angular-common": "15.4.0-develop.6",
|
|
39
|
+
"@progress/kendo-angular-dialog": "15.4.0-develop.6",
|
|
40
|
+
"@progress/kendo-angular-intl": "15.4.0-develop.6",
|
|
41
|
+
"@progress/kendo-angular-l10n": "15.4.0-develop.6",
|
|
42
|
+
"@progress/kendo-angular-popup": "15.4.0-develop.6",
|
|
43
|
+
"@progress/kendo-angular-icons": "15.4.0-develop.6",
|
|
44
44
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
45
|
-
"@progress/kendo-angular-upload": "15.4.0-develop.
|
|
45
|
+
"@progress/kendo-angular-upload": "15.4.0-develop.6"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.3.1",
|
|
49
|
-
"@progress/kendo-angular-schematics": "15.4.0-develop.
|
|
49
|
+
"@progress/kendo-angular-schematics": "15.4.0-develop.6",
|
|
50
50
|
"@progress/kendo-common": "^0.2.2",
|
|
51
51
|
"@progress/kendo-draggable": "^3.0.0",
|
|
52
52
|
"@progress/kendo-inputs-common": "^3.1.0"
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the hovered rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
10
|
* [see example]({% slug templates_rating %}#toc-hovered-item-template).
|
|
11
|
+
* The index of the currently hovered item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
12
|
*/
|
|
12
13
|
export declare class RatingHoveredItemTemplateDirective {
|
|
13
14
|
templateRef: TemplateRef<any>;
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
10
|
* [see example]({% slug templates_rating %}#toc-item-template).
|
|
11
|
+
* The index of the current item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
12
|
*/
|
|
12
13
|
export declare class RatingItemTemplateDirective {
|
|
13
14
|
templateRef: TemplateRef<any>;
|
|
@@ -8,6 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
* Renders the selected rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
9
|
* with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
10
|
* [see example]({% slug templates_rating %}#toc-selected-item-template).
|
|
11
|
+
* The index of the currently selected item is available as an implicit context using the `let-index="index"` syntax.
|
|
11
12
|
*/
|
|
12
13
|
export declare class RatingSelectedItemTemplateDirective {
|
|
13
14
|
templateRef: TemplateRef<any>;
|