@progress/kendo-angular-inputs 15.2.0-develop.1 → 15.2.0-develop.3
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/index.mjs +6 -0
- package/esm2020/inputs.module.mjs +7 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/rating/directives/rating-hovered-item.directive.mjs +24 -0
- package/esm2020/rating/directives/rating-item.directive.mjs +24 -0
- package/esm2020/rating/directives/rating-selected-item.directive.mjs +24 -0
- package/esm2020/rating/models/precision.mjs +5 -0
- package/esm2020/rating/models/rating-item.interface.mjs +5 -0
- package/esm2020/rating/models/selection.mjs +5 -0
- package/esm2020/rating/rating.component.mjs +710 -0
- package/esm2020/rating.module.mjs +68 -0
- package/fesm2015/progress-kendo-angular-inputs.mjs +840 -31
- package/fesm2020/progress-kendo-angular-inputs.mjs +839 -31
- package/index.d.ts +5 -0
- package/inputs.module.d.ts +2 -1
- package/package.json +10 -10
- package/rating/directives/rating-hovered-item.directive.d.ts +17 -0
- package/rating/directives/rating-item.directive.d.ts +17 -0
- package/rating/directives/rating-selected-item.directive.d.ts +17 -0
- package/rating/models/precision.d.ts +13 -0
- package/rating/models/rating-item.interface.d.ts +32 -0
- package/rating/models/selection.d.ts +13 -0
- package/rating/rating.component.d.ts +180 -0
- package/rating.module.d.ts +47 -0
package/esm2020/index.mjs
CHANGED
|
@@ -69,3 +69,9 @@ export { SignatureComponent } from './signature/signature.component';
|
|
|
69
69
|
export { SignatureModule } from './signature.module';
|
|
70
70
|
export { SignatureOpenEvent, SignatureCloseEvent } from './signature/events';
|
|
71
71
|
export { SignatureCustomMessagesComponent, LocalizedSignatureMessagesDirective, SignatureMessages } from './signature/localization';
|
|
72
|
+
// Rating Component
|
|
73
|
+
export { RatingItemTemplateDirective } from './rating/directives/rating-item.directive';
|
|
74
|
+
export { RatingHoveredItemTemplateDirective } from './rating/directives/rating-hovered-item.directive';
|
|
75
|
+
export { RatingSelectedItemTemplateDirective } from './rating/directives/rating-selected-item.directive';
|
|
76
|
+
export { RatingComponent } from './rating/rating.component';
|
|
77
|
+
export { RatingModule } from './rating.module';
|
|
@@ -16,6 +16,7 @@ import { CheckBoxModule } from './checkbox.module';
|
|
|
16
16
|
import { RadioButtonModule } from './radiobutton.module';
|
|
17
17
|
import { FormFieldModule } from './formfield.module';
|
|
18
18
|
import { SignatureModule } from './signature.module';
|
|
19
|
+
import { RatingModule } from './rating.module';
|
|
19
20
|
import * as i0 from "@angular/core";
|
|
20
21
|
/**
|
|
21
22
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
@@ -63,7 +64,8 @@ InputsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
|
63
64
|
CheckBoxModule,
|
|
64
65
|
RadioButtonModule,
|
|
65
66
|
FormFieldModule,
|
|
66
|
-
SignatureModule
|
|
67
|
+
SignatureModule,
|
|
68
|
+
RatingModule] });
|
|
67
69
|
InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: InputsModule, imports: [[CommonModule], TextAreaModule,
|
|
68
70
|
TextBoxModule,
|
|
69
71
|
SliderModule,
|
|
@@ -75,7 +77,8 @@ InputsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
|
75
77
|
CheckBoxModule,
|
|
76
78
|
RadioButtonModule,
|
|
77
79
|
FormFieldModule,
|
|
78
|
-
SignatureModule
|
|
80
|
+
SignatureModule,
|
|
81
|
+
RatingModule] });
|
|
79
82
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: InputsModule, decorators: [{
|
|
80
83
|
type: NgModule,
|
|
81
84
|
args: [{
|
|
@@ -91,7 +94,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
91
94
|
CheckBoxModule,
|
|
92
95
|
RadioButtonModule,
|
|
93
96
|
FormFieldModule,
|
|
94
|
-
SignatureModule
|
|
97
|
+
SignatureModule,
|
|
98
|
+
RatingModule
|
|
95
99
|
],
|
|
96
100
|
imports: [CommonModule]
|
|
97
101
|
}]
|
|
@@ -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.2.0-develop.
|
|
12
|
+
publishDate: 1709730435,
|
|
13
|
+
version: '15.2.0-develop.3',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Renders the hovered rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
|
+
* with the `kendoRatingHoveredItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
|
+
* [see example]({% slug templates_rating %}#toc-hovered-item-template).
|
|
11
|
+
*/
|
|
12
|
+
export class RatingHoveredItemTemplateDirective {
|
|
13
|
+
constructor(templateRef) {
|
|
14
|
+
this.templateRef = templateRef;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
RatingHoveredItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingHoveredItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
+
RatingHoveredItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: RatingHoveredItemTemplateDirective, selector: "[kendoRatingHoveredItemTemplate]", ngImport: i0 });
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingHoveredItemTemplateDirective, decorators: [{
|
|
20
|
+
type: Directive,
|
|
21
|
+
args: [{
|
|
22
|
+
selector: '[kendoRatingHoveredItemTemplate]'
|
|
23
|
+
}]
|
|
24
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Renders the rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
|
+
* with the `kendoRatingItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
|
+
* [see example]({% slug templates_rating %}#toc-item-template).
|
|
11
|
+
*/
|
|
12
|
+
export class RatingItemTemplateDirective {
|
|
13
|
+
constructor(templateRef) {
|
|
14
|
+
this.templateRef = templateRef;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
RatingItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
+
RatingItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: RatingItemTemplateDirective, selector: "[kendoRatingItemTemplate]", ngImport: i0 });
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingItemTemplateDirective, decorators: [{
|
|
20
|
+
type: Directive,
|
|
21
|
+
args: [{
|
|
22
|
+
selector: '[kendoRatingItemTemplate]'
|
|
23
|
+
}]
|
|
24
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { Directive, TemplateRef } from '@angular/core';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Renders the selected rating item content. To define an item template, nest an `<ng-template>` tag
|
|
9
|
+
* with the `kendoRatingSelectedItemTemplate` directive inside the `<kendo-rating>` tag
|
|
10
|
+
* [see example]({% slug templates_rating %}#toc-selected-item-template).
|
|
11
|
+
*/
|
|
12
|
+
export class RatingSelectedItemTemplateDirective {
|
|
13
|
+
constructor(templateRef) {
|
|
14
|
+
this.templateRef = templateRef;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
RatingSelectedItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingSelectedItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
18
|
+
RatingSelectedItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: RatingSelectedItemTemplateDirective, selector: "[kendoRatingSelectedItemTemplate]", ngImport: i0 });
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingSelectedItemTemplateDirective, decorators: [{
|
|
20
|
+
type: Directive,
|
|
21
|
+
args: [{
|
|
22
|
+
selector: '[kendoRatingSelectedItemTemplate]'
|
|
23
|
+
}]
|
|
24
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|