@syncfusion/ej2-angular-progressbar 20.4.40 → 20.4.42-ngcc

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.
Files changed (32) hide show
  1. package/@syncfusion/ej2-angular-progressbar.es5.js +261 -0
  2. package/@syncfusion/ej2-angular-progressbar.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-progressbar.js +233 -0
  4. package/@syncfusion/ej2-angular-progressbar.js.map +1 -0
  5. package/CHANGELOG.md +96 -0
  6. package/dist/ej2-angular-progressbar.umd.js +306 -0
  7. package/dist/ej2-angular-progressbar.umd.js.map +1 -0
  8. package/dist/ej2-angular-progressbar.umd.min.js +11 -0
  9. package/dist/ej2-angular-progressbar.umd.min.js.map +1 -0
  10. package/ej2-angular-progressbar.d.ts +5 -0
  11. package/ej2-angular-progressbar.metadata.json +1 -0
  12. package/package.json +16 -40
  13. package/postinstall/tagchange.js +18 -0
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/progressbar/annotations.directive.d.ts +0 -5
  18. package/src/progressbar/progressbar-all.module.d.ts +0 -6
  19. package/src/progressbar/progressbar.component.d.ts +0 -3
  20. package/src/progressbar/progressbar.module.d.ts +0 -7
  21. package/esm2020/public_api.mjs +0 -3
  22. package/esm2020/src/index.mjs +0 -6
  23. package/esm2020/src/progressbar/annotations.directive.mjs +0 -62
  24. package/esm2020/src/progressbar/progressbar-all.module.mjs +0 -29
  25. package/esm2020/src/progressbar/progressbar.component.mjs +0 -71
  26. package/esm2020/src/progressbar/progressbar.module.mjs +0 -34
  27. package/esm2020/syncfusion-ej2-angular-progressbar.mjs +0 -5
  28. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +0 -190
  29. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  30. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +0 -190
  31. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  32. package/syncfusion-ej2-angular-progressbar.d.ts +0 -5
@@ -0,0 +1,261 @@
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = Object.setPrototypeOf ||
3
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5
+ return function (d, b) {
6
+ extendStatics(d, b);
7
+ function __() { this.constructor = d; }
8
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9
+ };
10
+ })();
11
+ import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
12
+ import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
13
+ import { ProgressAnnotation, ProgressBar } from '@syncfusion/ej2-progressbar';
14
+ import { CommonModule } from '@angular/common';
15
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
16
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18
+ r = Reflect.decorate(decorators, target, key, desc);
19
+ else
20
+ for (var i = decorators.length - 1; i >= 0; i--)
21
+ if (d = decorators[i])
22
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
23
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
24
+ };
25
+ var __metadata = (this && this.__metadata) || function (k, v) {
26
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
27
+ return Reflect.metadata(k, v);
28
+ };
29
+ var input = ['annotationAngle', 'annotationRadius', 'content'];
30
+ var outputs = [];
31
+ /**
32
+ * ProgressBarAnnotations Directive
33
+ * ```html
34
+ * <e-progressbar-annotations>
35
+ * <e-progressbar-annotation></e-progressbar-annotation>
36
+ * </e-progressbar-annotations>
37
+ * ```
38
+ */
39
+ var ProgressBarAnnotationDirective = /** @class */ (function (_super) {
40
+ __extends(ProgressBarAnnotationDirective, _super);
41
+ /**
42
+ * @param {?} viewContainerRef
43
+ */
44
+ function ProgressBarAnnotationDirective(viewContainerRef) {
45
+ var _this = _super.call(this) || this;
46
+ _this.viewContainerRef = viewContainerRef;
47
+ setValue('currentInstance', _this, _this.viewContainerRef);
48
+ _this.registerEvents(outputs);
49
+ _this.directivePropList = input;
50
+ return _this;
51
+ }
52
+ return ProgressBarAnnotationDirective;
53
+ }(ComplexBase));
54
+ ProgressBarAnnotationDirective.decorators = [
55
+ { type: Directive, args: [{
56
+ selector: 'e-progressbar-annotations>e-progressbar-annotation',
57
+ inputs: input,
58
+ outputs: outputs,
59
+ queries: {}
60
+ },] },
61
+ ];
62
+ /**
63
+ * @nocollapse
64
+ */
65
+ ProgressBarAnnotationDirective.ctorParameters = function () { return [
66
+ { type: ViewContainerRef, },
67
+ ]; };
68
+ ProgressBarAnnotationDirective.propDecorators = {
69
+ 'content': [{ type: ContentChild, args: ['content',] },],
70
+ };
71
+ __decorate([
72
+ Template(),
73
+ __metadata("design:type", Object)
74
+ ], ProgressBarAnnotationDirective.prototype, "content", void 0);
75
+ /**
76
+ * ProgressBarAnnotation Array Directive
77
+ */
78
+ var ProgressBarAnnotationsDirective = /** @class */ (function (_super) {
79
+ __extends(ProgressBarAnnotationsDirective, _super);
80
+ function ProgressBarAnnotationsDirective() {
81
+ return _super.call(this, 'annotations') || this;
82
+ }
83
+ return ProgressBarAnnotationsDirective;
84
+ }(ArrayBase));
85
+ ProgressBarAnnotationsDirective.decorators = [
86
+ { type: Directive, args: [{
87
+ selector: 'ej-progressbar>e-progressbar-annotations',
88
+ queries: {
89
+ children: new ContentChildren(ProgressBarAnnotationDirective)
90
+ },
91
+ },] },
92
+ ];
93
+ /**
94
+ * @nocollapse
95
+ */
96
+ ProgressBarAnnotationsDirective.ctorParameters = function () { return []; };
97
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
98
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
99
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
100
+ r = Reflect.decorate(decorators, target, key, desc);
101
+ else
102
+ for (var i = decorators.length - 1; i >= 0; i--)
103
+ if (d = decorators[i])
104
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
105
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
106
+ };
107
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
108
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
109
+ return Reflect.metadata(k, v);
110
+ };
111
+ var inputs = ['animation', 'annotations', 'cornerRadius', 'enablePersistence', 'enablePieProgress', 'enableProgressSegments', 'enableRtl', 'endAngle', 'gapWidth', 'height', 'innerRadius', 'isActive', 'isGradient', 'isIndeterminate', 'isStriped', 'labelOnTrack', 'labelStyle', 'locale', 'margin', 'maximum', 'minimum', 'progressColor', 'progressThickness', 'radius', 'rangeColors', 'role', 'secondaryProgress', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
112
+ var outputs$1 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'valueChanged'];
113
+ var twoWays = [''];
114
+ /**
115
+ * ProgressBar Component
116
+ * ```html
117
+ * <ejsprogressbar></ejsprogressbar>
118
+ * ```
119
+ */
120
+ var ProgressBarComponent = /** @class */ (function (_super) {
121
+ __extends(ProgressBarComponent, _super);
122
+ /**
123
+ * @param {?} ngEle
124
+ * @param {?} srenderer
125
+ * @param {?} viewContainerRef
126
+ * @param {?} injector
127
+ */
128
+ function ProgressBarComponent(ngEle, srenderer, viewContainerRef, injector) {
129
+ var _this = _super.call(this) || this;
130
+ _this.ngEle = ngEle;
131
+ _this.srenderer = srenderer;
132
+ _this.viewContainerRef = viewContainerRef;
133
+ _this.injector = injector;
134
+ _this.tags = ['annotations'];
135
+ _this.element = _this.ngEle.nativeElement;
136
+ _this.injectedModules = _this.injectedModules || [];
137
+ try {
138
+ var mod = _this.injector.get('ProgressBarProgressAnnotation');
139
+ if (_this.injectedModules.indexOf(mod) === -1) {
140
+ _this.injectedModules.push(mod);
141
+ }
142
+ }
143
+ catch (_a) { }
144
+ _this.registerEvents(outputs$1);
145
+ _this.addTwoWay.call(_this, twoWays);
146
+ setValue('currentInstance', _this, _this.viewContainerRef);
147
+ _this.context = new ComponentBase();
148
+ return _this;
149
+ }
150
+ /**
151
+ * @return {?}
152
+ */
153
+ ProgressBarComponent.prototype.ngOnInit = function () {
154
+ this.context.ngOnInit(this);
155
+ };
156
+ /**
157
+ * @return {?}
158
+ */
159
+ ProgressBarComponent.prototype.ngAfterViewInit = function () {
160
+ this.context.ngAfterViewInit(this);
161
+ };
162
+ /**
163
+ * @return {?}
164
+ */
165
+ ProgressBarComponent.prototype.ngOnDestroy = function () {
166
+ this.context.ngOnDestroy(this);
167
+ };
168
+ /**
169
+ * @return {?}
170
+ */
171
+ ProgressBarComponent.prototype.ngAfterContentChecked = function () {
172
+ this.tagObjects[0].instance = this.childAnnotations;
173
+ this.context.ngAfterContentChecked(this);
174
+ };
175
+ return ProgressBarComponent;
176
+ }(ProgressBar));
177
+ ProgressBarComponent.decorators = [
178
+ { type: Component, args: [{
179
+ selector: 'ejs-progressbar',
180
+ inputs: inputs,
181
+ outputs: outputs$1,
182
+ template: '',
183
+ changeDetection: ChangeDetectionStrategy.OnPush,
184
+ queries: {
185
+ childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)
186
+ }
187
+ },] },
188
+ ];
189
+ /**
190
+ * @nocollapse
191
+ */
192
+ ProgressBarComponent.ctorParameters = function () { return [
193
+ { type: ElementRef, },
194
+ { type: Renderer2, },
195
+ { type: ViewContainerRef, },
196
+ { type: Injector, },
197
+ ]; };
198
+ ProgressBarComponent = __decorate$1([
199
+ ComponentMixins([ComponentBase]),
200
+ __metadata$1("design:paramtypes", [ElementRef,
201
+ Renderer2,
202
+ ViewContainerRef,
203
+ Injector])
204
+ ], ProgressBarComponent);
205
+ /**
206
+ * NgModule definition for the ProgressBar component.
207
+ */
208
+ var ProgressBarModule = /** @class */ (function () {
209
+ function ProgressBarModule() {
210
+ }
211
+ return ProgressBarModule;
212
+ }());
213
+ ProgressBarModule.decorators = [
214
+ { type: NgModule, args: [{
215
+ imports: [CommonModule],
216
+ declarations: [
217
+ ProgressBarComponent,
218
+ ProgressBarAnnotationDirective,
219
+ ProgressBarAnnotationsDirective
220
+ ],
221
+ exports: [
222
+ ProgressBarComponent,
223
+ ProgressBarAnnotationDirective,
224
+ ProgressBarAnnotationsDirective
225
+ ]
226
+ },] },
227
+ ];
228
+ /**
229
+ * @nocollapse
230
+ */
231
+ ProgressBarModule.ctorParameters = function () { return []; };
232
+ var ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
233
+ /**
234
+ * NgModule definition for the ProgressBar component with providers.
235
+ */
236
+ var ProgressBarAllModule = /** @class */ (function () {
237
+ function ProgressBarAllModule() {
238
+ }
239
+ return ProgressBarAllModule;
240
+ }());
241
+ ProgressBarAllModule.decorators = [
242
+ { type: NgModule, args: [{
243
+ imports: [CommonModule, ProgressBarModule],
244
+ exports: [
245
+ ProgressBarModule
246
+ ],
247
+ providers: [
248
+ ProgressAnnotationService
249
+ ]
250
+ },] },
251
+ ];
252
+ /**
253
+ * @nocollapse
254
+ */
255
+ ProgressBarAllModule.ctorParameters = function () { return []; };
256
+ /**
257
+ * Generated bundle index. Do not edit.
258
+ */
259
+ export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective, ProgressBarComponent, ProgressBarModule, ProgressBarAllModule, ProgressAnnotationService, inputs as ɵa, outputs$1 as ɵb };
260
+ export { ProgressBar, Margin, Font, Animation, ProgressAnnotationSettings, RangeColor, ProgressAnnotation, Rect, Size, Pos, RectOption, ColorValue, convertToHexCode, componentToHex, convertHexToColor, colorNameToHex, TextOption, degreeToLocation, getPathArc, stringToNumber, setAttributes, effect, annotationRender, getElement, removeElement, ProgressLocation, ProgressAnimation } from '@syncfusion/ej2-progressbar';
261
+ //# sourceMappingURL=ej2-angular-progressbar.es5.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-angular-progressbar.es5.js","sources":["~/@syncfusion/ej2-angular-progressbar/ej2-angular-progressbar.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar-all.module.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar.module.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar.component.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/annotations.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ProgressBarAnnotationDirective,ProgressBarAnnotationsDirective,ProgressBarComponent,ProgressBarModule,ProgressBarAllModule,ProgressAnnotationService,ProgressBar,ProgressBarModel,MarginModel,FontModel,AnimationModel,ProgressAnnotationSettingsModel,RangeColorModel,ILoadedEventArgs,ITextRenderEventArgs,IProgressValueEventArgs,IProgressResizeEventArgs,IProgressStyle,IProgressEventArgs,IAnnotationRenderEventArgs,LinearGradient,StopElement,IMouseEventArgs,Margin,Font,Animation,ProgressAnnotationSettings,RangeColor,ProgressAnnotation,ProgressType,CornerType,ProgressTheme,TextAlignmentType,ModeType,Rect,Size,Pos,RectOption,ColorValue,convertToHexCode,componentToHex,convertHexToColor,colorNameToHex,TextOption,degreeToLocation,getPathArc,stringToNumber,setAttributes,effect,annotationRender,getElement,removeElement,ProgressLocation,ProgressAnimation} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/progressbar/progressbar.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation} from '@syncfusion/ej2-progressbar';\n\n\nexport const /** @type {?} */ ProgressAnnotationService: ValueProvider = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation};\n/**\n * NgModule definition for the ProgressBar component with providers.\n */\nexport class ProgressBarAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, ProgressBarModule],\n exports: [\n ProgressBarModule\n ],\n providers:[\n ProgressAnnotationService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\n/**\n * NgModule definition for the ProgressBar component.\n */\nexport class ProgressBarModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressBar } from '@syncfusion/ej2-progressbar';\n\nimport { ProgressBarAnnotationsDirective } from './annotations.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['animation','annotations','cornerRadius','enablePersistence','enablePieProgress','enableProgressSegments','enableRtl','endAngle','gapWidth','height','innerRadius','isActive','isGradient','isIndeterminate','isStriped','labelOnTrack','labelStyle','locale','margin','maximum','minimum','progressColor','progressThickness','radius','rangeColors','role','secondaryProgress','segmentColor','segmentCount','showProgressValue','startAngle','theme','trackColor','trackThickness','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['animationComplete','load','loaded','mouseClick','mouseDown','mouseLeave','mouseMove','mouseUp','progressCompleted','textRender','valueChanged'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * ProgressBar Component\n * ```html\n * <ejsprogressbar></ejsprogressbar>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class ProgressBarComponent extends ProgressBar implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tanimationComplete: any;\n\tload: any;\n\tloaded: any;\n\tmouseClick: any;\n\tmouseDown: any;\n\tmouseLeave: any;\n\tmouseMove: any;\n\tmouseUp: any;\n\tprogressCompleted: any;\n\ttextRender: any;\npublic valueChanged: any;\npublic childAnnotations: QueryList<ProgressBarAnnotationsDirective>;\npublic tags: string[] = ['annotations'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('ProgressBarProgressAnnotation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childAnnotations;\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-progressbar',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction ProgressBarComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarComponent.ctorParameters;\n/** @type {?} */\nProgressBarComponent.prototype.context;\n/** @type {?} */\nProgressBarComponent.prototype.tagObjects;\n/** @type {?} */\nProgressBarComponent.prototype.animationComplete;\n/** @type {?} */\nProgressBarComponent.prototype.load;\n/** @type {?} */\nProgressBarComponent.prototype.loaded;\n/** @type {?} */\nProgressBarComponent.prototype.mouseClick;\n/** @type {?} */\nProgressBarComponent.prototype.mouseDown;\n/** @type {?} */\nProgressBarComponent.prototype.mouseLeave;\n/** @type {?} */\nProgressBarComponent.prototype.mouseMove;\n/** @type {?} */\nProgressBarComponent.prototype.mouseUp;\n/** @type {?} */\nProgressBarComponent.prototype.progressCompleted;\n/** @type {?} */\nProgressBarComponent.prototype.textRender;\n/** @type {?} */\nProgressBarComponent.prototype.valueChanged;\n/** @type {?} */\nProgressBarComponent.prototype.childAnnotations;\n/** @type {?} */\nProgressBarComponent.prototype.tags;\n/** @type {?} */\nProgressBarComponent.prototype.registerEvents;\n/** @type {?} */\nProgressBarComponent.prototype.addTwoWay;\n/** @type {?} */\nProgressBarComponent.prototype.ngEle;\n/** @type {?} */\nProgressBarComponent.prototype.srenderer;\n/** @type {?} */\nProgressBarComponent.prototype.viewContainerRef;\n/** @type {?} */\nProgressBarComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['annotationAngle', 'annotationRadius', 'content'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * ProgressBarAnnotations Directive\n * ```html\n * <e-progressbar-annotations>\n * <e-progressbar-annotation></e-progressbar-annotation>\n * </e-progressbar-annotations>\n * ```\n */\nexport class ProgressBarAnnotationDirective extends ComplexBase<ProgressBarAnnotationDirective> {\npublic directivePropList: any;\n/**\n * to move annotation\n * \\@default 0\n */\npublic annotationAngle: any;\n/**\n * to move annotation\n * \\@default '0%'\n */\npublic annotationRadius: any;\n/**\n * Content of the annotation, which accepts the id of the custom element.\n * \\@default null\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-progressbar-annotations>e-progressbar-annotation',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction ProgressBarAnnotationDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAnnotationDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAnnotationDirective.ctorParameters;\n/** @type {?} */\nProgressBarAnnotationDirective.propDecorators;\n/** @type {?} */\nProgressBarAnnotationDirective.prototype.directivePropList;\n/**\n * to move annotation\n * \\@default 0\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.annotationAngle;\n/**\n * to move annotation\n * \\@default '0%'\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.annotationRadius;\n/**\n * Content of the annotation, which accepts the id of the custom element.\n * \\@default null\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.content;\n/** @type {?} */\nProgressBarAnnotationDirective.prototype.viewContainerRef;\n}\n\n/**\n * ProgressBarAnnotation Array Directive\n */\nexport class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {\nconstructor() {\n super('annotations');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ej-progressbar>e-progressbar-annotations',\n queries: {\n children: new ContentChildren(ProgressBarAnnotationDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarAnnotationsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAnnotationsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAnnotationsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs"],"mappings":"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"}
@@ -0,0 +1,233 @@
1
+ import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
2
+ import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
3
+ import { ProgressAnnotation, ProgressBar } from '@syncfusion/ej2-progressbar';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
7
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
8
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
9
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
10
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
11
+ };
12
+ var __metadata = (this && this.__metadata) || function (k, v) {
13
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
14
+ };
15
+ let input = ['annotationAngle', 'annotationRadius', 'content'];
16
+ let outputs = [];
17
+ /**
18
+ * ProgressBarAnnotations Directive
19
+ * ```html
20
+ * <e-progressbar-annotations>
21
+ * <e-progressbar-annotation></e-progressbar-annotation>
22
+ * </e-progressbar-annotations>
23
+ * ```
24
+ */
25
+ class ProgressBarAnnotationDirective extends ComplexBase {
26
+ /**
27
+ * @param {?} viewContainerRef
28
+ */
29
+ constructor(viewContainerRef) {
30
+ super();
31
+ this.viewContainerRef = viewContainerRef;
32
+ setValue('currentInstance', this, this.viewContainerRef);
33
+ this.registerEvents(outputs);
34
+ this.directivePropList = input;
35
+ }
36
+ }
37
+ ProgressBarAnnotationDirective.decorators = [
38
+ { type: Directive, args: [{
39
+ selector: 'e-progressbar-annotations>e-progressbar-annotation',
40
+ inputs: input,
41
+ outputs: outputs,
42
+ queries: {}
43
+ },] },
44
+ ];
45
+ /**
46
+ * @nocollapse
47
+ */
48
+ ProgressBarAnnotationDirective.ctorParameters = () => [
49
+ { type: ViewContainerRef, },
50
+ ];
51
+ ProgressBarAnnotationDirective.propDecorators = {
52
+ 'content': [{ type: ContentChild, args: ['content',] },],
53
+ };
54
+ __decorate([
55
+ Template(),
56
+ __metadata("design:type", Object)
57
+ ], ProgressBarAnnotationDirective.prototype, "content", void 0);
58
+ /**
59
+ * ProgressBarAnnotation Array Directive
60
+ */
61
+ class ProgressBarAnnotationsDirective extends ArrayBase {
62
+ constructor() {
63
+ super('annotations');
64
+ }
65
+ }
66
+ ProgressBarAnnotationsDirective.decorators = [
67
+ { type: Directive, args: [{
68
+ selector: 'ej-progressbar>e-progressbar-annotations',
69
+ queries: {
70
+ children: new ContentChildren(ProgressBarAnnotationDirective)
71
+ },
72
+ },] },
73
+ ];
74
+ /**
75
+ * @nocollapse
76
+ */
77
+ ProgressBarAnnotationsDirective.ctorParameters = () => [];
78
+
79
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
80
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
81
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
82
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
83
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
84
+ };
85
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
86
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
87
+ };
88
+ const inputs = ['animation', 'annotations', 'cornerRadius', 'enablePersistence', 'enablePieProgress', 'enableProgressSegments', 'enableRtl', 'endAngle', 'gapWidth', 'height', 'innerRadius', 'isActive', 'isGradient', 'isIndeterminate', 'isStriped', 'labelOnTrack', 'labelStyle', 'locale', 'margin', 'maximum', 'minimum', 'progressColor', 'progressThickness', 'radius', 'rangeColors', 'role', 'secondaryProgress', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
89
+ const outputs$1 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'valueChanged'];
90
+ const twoWays = [''];
91
+ /**
92
+ * ProgressBar Component
93
+ * ```html
94
+ * <ejsprogressbar></ejsprogressbar>
95
+ * ```
96
+ */
97
+ let ProgressBarComponent = class ProgressBarComponent extends ProgressBar {
98
+ /**
99
+ * @param {?} ngEle
100
+ * @param {?} srenderer
101
+ * @param {?} viewContainerRef
102
+ * @param {?} injector
103
+ */
104
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
105
+ super();
106
+ this.ngEle = ngEle;
107
+ this.srenderer = srenderer;
108
+ this.viewContainerRef = viewContainerRef;
109
+ this.injector = injector;
110
+ this.tags = ['annotations'];
111
+ this.element = this.ngEle.nativeElement;
112
+ this.injectedModules = this.injectedModules || [];
113
+ try {
114
+ let mod = this.injector.get('ProgressBarProgressAnnotation');
115
+ if (this.injectedModules.indexOf(mod) === -1) {
116
+ this.injectedModules.push(mod);
117
+ }
118
+ }
119
+ catch (_a) { }
120
+ this.registerEvents(outputs$1);
121
+ this.addTwoWay.call(this, twoWays);
122
+ setValue('currentInstance', this, this.viewContainerRef);
123
+ this.context = new ComponentBase();
124
+ }
125
+ /**
126
+ * @return {?}
127
+ */
128
+ ngOnInit() {
129
+ this.context.ngOnInit(this);
130
+ }
131
+ /**
132
+ * @return {?}
133
+ */
134
+ ngAfterViewInit() {
135
+ this.context.ngAfterViewInit(this);
136
+ }
137
+ /**
138
+ * @return {?}
139
+ */
140
+ ngOnDestroy() {
141
+ this.context.ngOnDestroy(this);
142
+ }
143
+ /**
144
+ * @return {?}
145
+ */
146
+ ngAfterContentChecked() {
147
+ this.tagObjects[0].instance = this.childAnnotations;
148
+ this.context.ngAfterContentChecked(this);
149
+ }
150
+ };
151
+ ProgressBarComponent.decorators = [
152
+ { type: Component, args: [{
153
+ selector: 'ejs-progressbar',
154
+ inputs: inputs,
155
+ outputs: outputs$1,
156
+ template: '',
157
+ changeDetection: ChangeDetectionStrategy.OnPush,
158
+ queries: {
159
+ childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)
160
+ }
161
+ },] },
162
+ ];
163
+ /**
164
+ * @nocollapse
165
+ */
166
+ ProgressBarComponent.ctorParameters = () => [
167
+ { type: ElementRef, },
168
+ { type: Renderer2, },
169
+ { type: ViewContainerRef, },
170
+ { type: Injector, },
171
+ ];
172
+ ProgressBarComponent = __decorate$1([
173
+ ComponentMixins([ComponentBase]),
174
+ __metadata$1("design:paramtypes", [ElementRef,
175
+ Renderer2,
176
+ ViewContainerRef,
177
+ Injector])
178
+ ], ProgressBarComponent);
179
+
180
+ /**
181
+ * NgModule definition for the ProgressBar component.
182
+ */
183
+ class ProgressBarModule {
184
+ }
185
+ ProgressBarModule.decorators = [
186
+ { type: NgModule, args: [{
187
+ imports: [CommonModule],
188
+ declarations: [
189
+ ProgressBarComponent,
190
+ ProgressBarAnnotationDirective,
191
+ ProgressBarAnnotationsDirective
192
+ ],
193
+ exports: [
194
+ ProgressBarComponent,
195
+ ProgressBarAnnotationDirective,
196
+ ProgressBarAnnotationsDirective
197
+ ]
198
+ },] },
199
+ ];
200
+ /**
201
+ * @nocollapse
202
+ */
203
+ ProgressBarModule.ctorParameters = () => [];
204
+
205
+ const ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
206
+ /**
207
+ * NgModule definition for the ProgressBar component with providers.
208
+ */
209
+ class ProgressBarAllModule {
210
+ }
211
+ ProgressBarAllModule.decorators = [
212
+ { type: NgModule, args: [{
213
+ imports: [CommonModule, ProgressBarModule],
214
+ exports: [
215
+ ProgressBarModule
216
+ ],
217
+ providers: [
218
+ ProgressAnnotationService
219
+ ]
220
+ },] },
221
+ ];
222
+ /**
223
+ * @nocollapse
224
+ */
225
+ ProgressBarAllModule.ctorParameters = () => [];
226
+
227
+ /**
228
+ * Generated bundle index. Do not edit.
229
+ */
230
+
231
+ export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective, ProgressBarComponent, ProgressBarModule, ProgressBarAllModule, ProgressAnnotationService, inputs as ɵa, outputs$1 as ɵb };
232
+ export { ProgressBar, Margin, Font, Animation, ProgressAnnotationSettings, RangeColor, ProgressAnnotation, Rect, Size, Pos, RectOption, ColorValue, convertToHexCode, componentToHex, convertHexToColor, colorNameToHex, TextOption, degreeToLocation, getPathArc, stringToNumber, setAttributes, effect, annotationRender, getElement, removeElement, ProgressLocation, ProgressAnimation } from '@syncfusion/ej2-progressbar';
233
+ //# sourceMappingURL=ej2-angular-progressbar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-angular-progressbar.js","sources":["~/@syncfusion/ej2-angular-progressbar/ej2-angular-progressbar.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar-all.module.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar.module.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar.component.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/annotations.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ProgressBarAnnotationDirective,ProgressBarAnnotationsDirective,ProgressBarComponent,ProgressBarModule,ProgressBarAllModule,ProgressAnnotationService,ProgressBar,ProgressBarModel,MarginModel,FontModel,AnimationModel,ProgressAnnotationSettingsModel,RangeColorModel,ILoadedEventArgs,ITextRenderEventArgs,IProgressValueEventArgs,IProgressResizeEventArgs,IProgressStyle,IProgressEventArgs,IAnnotationRenderEventArgs,LinearGradient,StopElement,IMouseEventArgs,Margin,Font,Animation,ProgressAnnotationSettings,RangeColor,ProgressAnnotation,ProgressType,CornerType,ProgressTheme,TextAlignmentType,ModeType,Rect,Size,Pos,RectOption,ColorValue,convertToHexCode,componentToHex,convertHexToColor,colorNameToHex,TextOption,degreeToLocation,getPathArc,stringToNumber,setAttributes,effect,annotationRender,getElement,removeElement,ProgressLocation,ProgressAnimation} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/progressbar/progressbar.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation} from '@syncfusion/ej2-progressbar';\n\n\nexport const /** @type {?} */ ProgressAnnotationService: ValueProvider = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation};\n/**\n * NgModule definition for the ProgressBar component with providers.\n */\nexport class ProgressBarAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, ProgressBarModule],\n exports: [\n ProgressBarModule\n ],\n providers:[\n ProgressAnnotationService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\n/**\n * NgModule definition for the ProgressBar component.\n */\nexport class ProgressBarModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressBar } from '@syncfusion/ej2-progressbar';\n\nimport { ProgressBarAnnotationsDirective } from './annotations.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['animation','annotations','cornerRadius','enablePersistence','enablePieProgress','enableProgressSegments','enableRtl','endAngle','gapWidth','height','innerRadius','isActive','isGradient','isIndeterminate','isStriped','labelOnTrack','labelStyle','locale','margin','maximum','minimum','progressColor','progressThickness','radius','rangeColors','role','secondaryProgress','segmentColor','segmentCount','showProgressValue','startAngle','theme','trackColor','trackThickness','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['animationComplete','load','loaded','mouseClick','mouseDown','mouseLeave','mouseMove','mouseUp','progressCompleted','textRender','valueChanged'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * ProgressBar Component\n * ```html\n * <ejsprogressbar></ejsprogressbar>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class ProgressBarComponent extends ProgressBar implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tanimationComplete: any;\n\tload: any;\n\tloaded: any;\n\tmouseClick: any;\n\tmouseDown: any;\n\tmouseLeave: any;\n\tmouseMove: any;\n\tmouseUp: any;\n\tprogressCompleted: any;\n\ttextRender: any;\npublic valueChanged: any;\npublic childAnnotations: QueryList<ProgressBarAnnotationsDirective>;\npublic tags: string[] = ['annotations'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('ProgressBarProgressAnnotation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childAnnotations;\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-progressbar',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction ProgressBarComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarComponent.ctorParameters;\n/** @type {?} */\nProgressBarComponent.prototype.context;\n/** @type {?} */\nProgressBarComponent.prototype.tagObjects;\n/** @type {?} */\nProgressBarComponent.prototype.animationComplete;\n/** @type {?} */\nProgressBarComponent.prototype.load;\n/** @type {?} */\nProgressBarComponent.prototype.loaded;\n/** @type {?} */\nProgressBarComponent.prototype.mouseClick;\n/** @type {?} */\nProgressBarComponent.prototype.mouseDown;\n/** @type {?} */\nProgressBarComponent.prototype.mouseLeave;\n/** @type {?} */\nProgressBarComponent.prototype.mouseMove;\n/** @type {?} */\nProgressBarComponent.prototype.mouseUp;\n/** @type {?} */\nProgressBarComponent.prototype.progressCompleted;\n/** @type {?} */\nProgressBarComponent.prototype.textRender;\n/** @type {?} */\nProgressBarComponent.prototype.valueChanged;\n/** @type {?} */\nProgressBarComponent.prototype.childAnnotations;\n/** @type {?} */\nProgressBarComponent.prototype.tags;\n/** @type {?} */\nProgressBarComponent.prototype.registerEvents;\n/** @type {?} */\nProgressBarComponent.prototype.addTwoWay;\n/** @type {?} */\nProgressBarComponent.prototype.ngEle;\n/** @type {?} */\nProgressBarComponent.prototype.srenderer;\n/** @type {?} */\nProgressBarComponent.prototype.viewContainerRef;\n/** @type {?} */\nProgressBarComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['annotationAngle', 'annotationRadius', 'content'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * ProgressBarAnnotations Directive\n * ```html\n * <e-progressbar-annotations>\n * <e-progressbar-annotation></e-progressbar-annotation>\n * </e-progressbar-annotations>\n * ```\n */\nexport class ProgressBarAnnotationDirective extends ComplexBase<ProgressBarAnnotationDirective> {\npublic directivePropList: any;\n/**\n * to move annotation\n * \\@default 0\n */\npublic annotationAngle: any;\n/**\n * to move annotation\n * \\@default '0%'\n */\npublic annotationRadius: any;\n/**\n * Content of the annotation, which accepts the id of the custom element.\n * \\@default null\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-progressbar-annotations>e-progressbar-annotation',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction ProgressBarAnnotationDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAnnotationDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAnnotationDirective.ctorParameters;\n/** @type {?} */\nProgressBarAnnotationDirective.propDecorators;\n/** @type {?} */\nProgressBarAnnotationDirective.prototype.directivePropList;\n/**\n * to move annotation\n * \\@default 0\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.annotationAngle;\n/**\n * to move annotation\n * \\@default '0%'\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.annotationRadius;\n/**\n * Content of the annotation, which accepts the id of the custom element.\n * \\@default null\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.content;\n/** @type {?} */\nProgressBarAnnotationDirective.prototype.viewContainerRef;\n}\n\n/**\n * ProgressBarAnnotation Array Directive\n */\nexport class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {\nconstructor() {\n super('annotations');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ej-progressbar>e-progressbar-annotations',\n queries: {\n children: new ContentChildren(ProgressBarAnnotationDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarAnnotationsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAnnotationsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAnnotationsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs"],"mappings":"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"}