@progress/kendo-angular-inputs 15.2.0-develop.2 → 15.2.0-develop.4
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
|
@@ -0,0 +1,68 @@
|
|
|
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 { NgModule } from '@angular/core';
|
|
6
|
+
import { CommonModule } from '@angular/common';
|
|
7
|
+
import { RatingComponent } from './rating/rating.component';
|
|
8
|
+
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
9
|
+
import { RatingItemTemplateDirective } from './rating/directives/rating-item.directive';
|
|
10
|
+
import { RatingHoveredItemTemplateDirective } from './rating/directives/rating-hovered-item.directive';
|
|
11
|
+
import { RatingSelectedItemTemplateDirective } from './rating/directives/rating-selected-item.directive';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
const PUBLIC_DIRECTIVES = [
|
|
14
|
+
RatingComponent,
|
|
15
|
+
RatingItemTemplateDirective,
|
|
16
|
+
RatingHoveredItemTemplateDirective,
|
|
17
|
+
RatingSelectedItemTemplateDirective
|
|
18
|
+
];
|
|
19
|
+
/**
|
|
20
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
21
|
+
* definition for the Rating component.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
*
|
|
25
|
+
* ```ts-no-run
|
|
26
|
+
* // Import the Rating module
|
|
27
|
+
* import { RatingModule } from '@progress/kendo-angular-inputs';
|
|
28
|
+
*
|
|
29
|
+
* // The browser platform with a compiler
|
|
30
|
+
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
31
|
+
*
|
|
32
|
+
* import { NgModule } from '@angular/core';
|
|
33
|
+
*
|
|
34
|
+
* // Import the app component
|
|
35
|
+
* import { AppComponent } from './app.component';
|
|
36
|
+
*
|
|
37
|
+
* // Define the app module
|
|
38
|
+
* _@NgModule({
|
|
39
|
+
* declarations: [AppComponent], // declare app component
|
|
40
|
+
* imports: [BrowserModule, RatingModule], // import Rating module
|
|
41
|
+
* bootstrap: [AppComponent]
|
|
42
|
+
* })
|
|
43
|
+
* export class AppModule {}
|
|
44
|
+
*
|
|
45
|
+
* // Compile and launch the module
|
|
46
|
+
* platformBrowserDynamic().bootstrapModule(AppModule);
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export class RatingModule {
|
|
51
|
+
}
|
|
52
|
+
RatingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
53
|
+
RatingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingModule, declarations: [RatingComponent,
|
|
54
|
+
RatingItemTemplateDirective,
|
|
55
|
+
RatingHoveredItemTemplateDirective,
|
|
56
|
+
RatingSelectedItemTemplateDirective], imports: [CommonModule, IconsModule], exports: [RatingComponent,
|
|
57
|
+
RatingItemTemplateDirective,
|
|
58
|
+
RatingHoveredItemTemplateDirective,
|
|
59
|
+
RatingSelectedItemTemplateDirective] });
|
|
60
|
+
RatingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingModule, imports: [[CommonModule, IconsModule]] });
|
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: RatingModule, decorators: [{
|
|
62
|
+
type: NgModule,
|
|
63
|
+
args: [{
|
|
64
|
+
declarations: [PUBLIC_DIRECTIVES],
|
|
65
|
+
exports: [PUBLIC_DIRECTIVES],
|
|
66
|
+
imports: [CommonModule, IconsModule]
|
|
67
|
+
}]
|
|
68
|
+
}] });
|