@syncfusion/ej2-angular-progressbar 24.2.5 → 24.2.9-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 (34) hide show
  1. package/@syncfusion/ej2-angular-progressbar.es5.js +331 -0
  2. package/@syncfusion/ej2-angular-progressbar.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-progressbar.js +299 -0
  4. package/@syncfusion/ej2-angular-progressbar.js.map +1 -0
  5. package/CHANGELOG.md +151 -0
  6. package/dist/ej2-angular-progressbar.umd.js +382 -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 +14 -28
  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 -8
  21. package/src/progressbar/rangecolors.directive.d.ts +0 -5
  22. package/esm2020/public_api.mjs +0 -3
  23. package/esm2020/src/index.mjs +0 -7
  24. package/esm2020/src/progressbar/annotations.directive.mjs +0 -62
  25. package/esm2020/src/progressbar/progressbar-all.module.mjs +0 -32
  26. package/esm2020/src/progressbar/progressbar.component.mjs +0 -83
  27. package/esm2020/src/progressbar/progressbar.module.mjs +0 -43
  28. package/esm2020/src/progressbar/rangecolors.directive.mjs +0 -46
  29. package/esm2020/syncfusion-ej2-angular-progressbar.mjs +0 -5
  30. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +0 -255
  31. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  32. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +0 -255
  33. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  34. package/syncfusion-ej2-angular-progressbar.d.ts +0 -5
@@ -0,0 +1,299 @@
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, ProgressTooltip } 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
+ let input$1 = ['color', 'end', 'start'];
80
+ let outputs$1 = [];
81
+ class RangeColorDirective extends ComplexBase {
82
+ /**
83
+ * @param {?} viewContainerRef
84
+ */
85
+ constructor(viewContainerRef) {
86
+ super();
87
+ this.viewContainerRef = viewContainerRef;
88
+ setValue('currentInstance', this, this.viewContainerRef);
89
+ this.registerEvents(outputs$1);
90
+ this.directivePropList = input$1;
91
+ }
92
+ }
93
+ RangeColorDirective.decorators = [
94
+ { type: Directive, args: [{
95
+ selector: 'e-rangecolors>e-rangecolor',
96
+ inputs: input$1,
97
+ outputs: outputs$1,
98
+ queries: {}
99
+ },] },
100
+ ];
101
+ /**
102
+ * @nocollapse
103
+ */
104
+ RangeColorDirective.ctorParameters = () => [
105
+ { type: ViewContainerRef, },
106
+ ];
107
+ /**
108
+ * RangeColor Array Directive
109
+ */
110
+ class RangeColorsDirective extends ArrayBase {
111
+ constructor() {
112
+ super('rangecolors');
113
+ }
114
+ }
115
+ RangeColorsDirective.decorators = [
116
+ { type: Directive, args: [{
117
+ selector: 'ejs-progressbar>e-rangecolors',
118
+ queries: {
119
+ children: new ContentChildren(RangeColorDirective)
120
+ },
121
+ },] },
122
+ ];
123
+ /**
124
+ * @nocollapse
125
+ */
126
+ RangeColorsDirective.ctorParameters = () => [];
127
+
128
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
129
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
130
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
131
+ 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;
132
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
133
+ };
134
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
135
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
136
+ };
137
+ 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', 'secondaryProgressColor', 'secondaryProgressThickness', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'tooltip', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
138
+ const outputs$2 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'tooltipRender', 'valueChanged'];
139
+ const twoWays = [''];
140
+ /**
141
+ * ProgressBar Component
142
+ * ```html
143
+ * <ejsprogressbar></ejsprogressbar>
144
+ * ```
145
+ */
146
+ let ProgressBarComponent = class ProgressBarComponent extends ProgressBar {
147
+ /**
148
+ * @param {?} ngEle
149
+ * @param {?} srenderer
150
+ * @param {?} viewContainerRef
151
+ * @param {?} injector
152
+ */
153
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
154
+ super();
155
+ this.ngEle = ngEle;
156
+ this.srenderer = srenderer;
157
+ this.viewContainerRef = viewContainerRef;
158
+ this.injector = injector;
159
+ this.tags = ['annotations', 'rangeColors'];
160
+ this.element = this.ngEle.nativeElement;
161
+ this.injectedModules = this.injectedModules || [];
162
+ try {
163
+ let mod = this.injector.get('ProgressBarProgressAnnotation');
164
+ if (this.injectedModules.indexOf(mod) === -1) {
165
+ this.injectedModules.push(mod);
166
+ }
167
+ }
168
+ catch (_a) { }
169
+ try {
170
+ let mod = this.injector.get('ProgressBarProgressTooltip');
171
+ if (this.injectedModules.indexOf(mod) === -1) {
172
+ this.injectedModules.push(mod);
173
+ }
174
+ }
175
+ catch (_b) { }
176
+ this.registerEvents(outputs$2);
177
+ this.addTwoWay.call(this, twoWays);
178
+ setValue('currentInstance', this, this.viewContainerRef);
179
+ this.context = new ComponentBase();
180
+ }
181
+ /**
182
+ * @return {?}
183
+ */
184
+ ngOnInit() {
185
+ this.context.ngOnInit(this);
186
+ }
187
+ /**
188
+ * @return {?}
189
+ */
190
+ ngAfterViewInit() {
191
+ this.context.ngAfterViewInit(this);
192
+ }
193
+ /**
194
+ * @return {?}
195
+ */
196
+ ngOnDestroy() {
197
+ this.context.ngOnDestroy(this);
198
+ }
199
+ /**
200
+ * @return {?}
201
+ */
202
+ ngAfterContentChecked() {
203
+ this.tagObjects[0].instance = this.childAnnotations;
204
+ if (this.childRangeColors) {
205
+ this.tagObjects[1].instance = /** @type {?} */ (this.childRangeColors);
206
+ }
207
+ this.context.ngAfterContentChecked(this);
208
+ }
209
+ };
210
+ ProgressBarComponent.decorators = [
211
+ { type: Component, args: [{
212
+ selector: 'ejs-progressbar',
213
+ inputs: inputs,
214
+ outputs: outputs$2,
215
+ template: '',
216
+ changeDetection: ChangeDetectionStrategy.OnPush,
217
+ queries: {
218
+ childAnnotations: new ContentChild(ProgressBarAnnotationsDirective),
219
+ childRangeColors: new ContentChild(RangeColorsDirective)
220
+ }
221
+ },] },
222
+ ];
223
+ /**
224
+ * @nocollapse
225
+ */
226
+ ProgressBarComponent.ctorParameters = () => [
227
+ { type: ElementRef, },
228
+ { type: Renderer2, },
229
+ { type: ViewContainerRef, },
230
+ { type: Injector, },
231
+ ];
232
+ ProgressBarComponent = __decorate$1([
233
+ ComponentMixins([ComponentBase]),
234
+ __metadata$1("design:paramtypes", [ElementRef,
235
+ Renderer2,
236
+ ViewContainerRef,
237
+ Injector])
238
+ ], ProgressBarComponent);
239
+
240
+ /**
241
+ * NgModule definition for the ProgressBar component.
242
+ */
243
+ class ProgressBarModule {
244
+ }
245
+ ProgressBarModule.decorators = [
246
+ { type: NgModule, args: [{
247
+ imports: [CommonModule],
248
+ declarations: [
249
+ ProgressBarComponent,
250
+ ProgressBarAnnotationDirective,
251
+ ProgressBarAnnotationsDirective,
252
+ RangeColorDirective,
253
+ RangeColorsDirective
254
+ ],
255
+ exports: [
256
+ ProgressBarComponent,
257
+ ProgressBarAnnotationDirective,
258
+ ProgressBarAnnotationsDirective,
259
+ RangeColorDirective,
260
+ RangeColorsDirective
261
+ ]
262
+ },] },
263
+ ];
264
+ /**
265
+ * @nocollapse
266
+ */
267
+ ProgressBarModule.ctorParameters = () => [];
268
+
269
+ const ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
270
+ const ProgressTooltipService = { provide: 'ProgressBarProgressTooltip', useValue: ProgressTooltip };
271
+ /**
272
+ * NgModule definition for the ProgressBar component with providers.
273
+ */
274
+ class ProgressBarAllModule {
275
+ }
276
+ ProgressBarAllModule.decorators = [
277
+ { type: NgModule, args: [{
278
+ imports: [CommonModule, ProgressBarModule],
279
+ exports: [
280
+ ProgressBarModule
281
+ ],
282
+ providers: [
283
+ ProgressAnnotationService,
284
+ ProgressTooltipService
285
+ ]
286
+ },] },
287
+ ];
288
+ /**
289
+ * @nocollapse
290
+ */
291
+ ProgressBarAllModule.ctorParameters = () => [];
292
+
293
+ /**
294
+ * Generated bundle index. Do not edit.
295
+ */
296
+
297
+ export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective, RangeColorDirective, RangeColorsDirective, ProgressBarComponent, ProgressBarModule, ProgressBarAllModule, ProgressAnnotationService, ProgressTooltipService, inputs as ɵa, outputs$2 as ɵb };
298
+ export { ProgressBar, Margin, Font, Animation, ProgressAnnotationSettings, Border, TooltipSettings, RangeColor, ProgressAnnotation, ProgressTooltip, Rect, Size, Pos, RectOption, ColorValue, convertToHexCode, componentToHex, convertHexToColor, colorNameToHex, TextOption, degreeToLocation, getPathArc, stringToNumber, setAttributes, effect, annotationRender, getElement, removeElement, ProgressLocation, ProgressAnimation } from '@syncfusion/ej2-progressbar';
299
+ //# 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/rangecolors.directive.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/annotations.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ProgressBarAnnotationDirective,ProgressBarAnnotationsDirective,RangeColorDirective,RangeColorsDirective,ProgressBarComponent,ProgressBarModule,ProgressBarAllModule,ProgressAnnotationService,ProgressTooltipService,ProgressBar,ProgressBarModel,MarginModel,FontModel,AnimationModel,ProgressAnnotationSettingsModel,BorderModel,TooltipSettingsModel,RangeColorModel,ITooltipRenderEventArgs,IFontMapping,ILoadedEventArgs,ITextRenderEventArgs,IProgressValueEventArgs,IProgressResizeEventArgs,IProgressStyle,IProgressEventArgs,IAnnotationRenderEventArgs,LinearGradient,StopElement,IMouseEventArgs,Margin,Font,Animation,ProgressAnnotationSettings,Border,TooltipSettings,RangeColor,ProgressAnnotation,ProgressTooltip,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 { RangeColorDirective, RangeColorsDirective } from './rangecolors.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation, ProgressTooltip} from '@syncfusion/ej2-progressbar';\n\n\nexport const /** @type {?} */ ProgressAnnotationService: ValueProvider = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation};\nexport const /** @type {?} */ ProgressTooltipService: ValueProvider = { provide: 'ProgressBarProgressTooltip', useValue: ProgressTooltip};\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 ProgressTooltipService\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 { RangeColorDirective, RangeColorsDirective } from './rangecolors.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 RangeColorDirective,\n RangeColorsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective,\n RangeColorDirective,\n RangeColorsDirective\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';\nimport { RangeColorsDirective } from './rangecolors.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','secondaryProgressColor','secondaryProgressThickness','segmentColor','segmentCount','showProgressValue','startAngle','theme','tooltip','trackColor','trackThickness','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['animationComplete','load','loaded','mouseClick','mouseDown','mouseLeave','mouseMove','mouseUp','progressCompleted','textRender','tooltipRender','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;\n\ttooltipRender: any;\npublic valueChanged: any;\npublic childAnnotations: QueryList<ProgressBarAnnotationsDirective>;\npublic childRangeColors: QueryList<RangeColorsDirective>;\npublic tags: string[] = ['annotations', 'rangeColors'];\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 try {\n let mod = this.injector.get('ProgressBarProgressTooltip');\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 if (this.childRangeColors) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childRangeColors as any));\n }\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 childRangeColors: new ContentChild(RangeColorsDirective)\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.tooltipRender;\n/** @type {?} */\nProgressBarComponent.prototype.valueChanged;\n/** @type {?} */\nProgressBarComponent.prototype.childAnnotations;\n/** @type {?} */\nProgressBarComponent.prototype.childRangeColors;\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 } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['color', 'end', 'start'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class RangeColorDirective extends ComplexBase<RangeColorDirective> {\npublic directivePropList: any;\n/**\n * color\n * \\@default null\n */\npublic color: any;\n/**\n * end\n * \\@default null\n */\npublic end: any;\n/**\n * start\n * \\@default null\n */\npublic start: 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-rangecolors>e-rangecolor',\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];\n}\n\nfunction RangeColorDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRangeColorDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRangeColorDirective.ctorParameters;\n/** @type {?} */\nRangeColorDirective.prototype.directivePropList;\n/**\n * color\n * \\@default null\n * @type {?}\n */\nRangeColorDirective.prototype.color;\n/**\n * end\n * \\@default null\n * @type {?}\n */\nRangeColorDirective.prototype.end;\n/**\n * start\n * \\@default null\n * @type {?}\n */\nRangeColorDirective.prototype.start;\n/** @type {?} */\nRangeColorDirective.prototype.viewContainerRef;\n}\n\n/**\n * RangeColor Array Directive\n */\nexport class RangeColorsDirective extends ArrayBase<RangeColorsDirective> {\nconstructor() {\n super('rangecolors');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-progressbar>e-rangecolors',\n queries: {\n children: new ContentChildren(RangeColorDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction RangeColorsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nRangeColorsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nRangeColorsDirective.ctorParameters;\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","input"],"mappings":"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"}
package/CHANGELOG.md ADDED
@@ -0,0 +1,151 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### ProgressBar
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I558909` - The progress bar label now renders properly when setting the `textAlignment` as center.
10
+
11
+ ## 24.2.5 (2024-02-13)
12
+
13
+ ### ProgressBar
14
+
15
+ #### Bug Fixes
16
+
17
+ - `#I548132` - Optimized the inline style of the progress bar.
18
+
19
+ ## 23.2.6 (2023-11-28)
20
+
21
+ ### ProgressBar
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#I520806` - The progress bar now renders properly when it exceeds the `maximum` value.
26
+
27
+ ## 23.2.5 (2023-11-23)
28
+
29
+ ### ProgressBar
30
+
31
+ #### Bug Fixes
32
+
33
+ - `#I520853` - The circular progress bar now renders properly for all the values.
34
+
35
+ ## 23.1.38 (2023-09-26)
36
+
37
+ ### ProgressBar
38
+
39
+ #### Bug Fixes
40
+
41
+ - `#I501894` - Now, the linear progress bar label renders properly when the alignment is set to center.
42
+
43
+ ## 21.1.37 (2023-03-29)
44
+
45
+ ### ProgressBar
46
+
47
+ #### Bug Fixes
48
+
49
+ - `#F180771` - The progress bar range color issue has been resolved.
50
+
51
+ ## 21.1.35 (2023-03-23)
52
+
53
+ ### ProgressBar
54
+
55
+ #### New Features
56
+
57
+ - `#I386691` - Provided support to display tooltips during initial load of progress bars and mouse hover with numeric or text values of the progress.
58
+ - Provided support to customize the width and color of the secondary progress bar.
59
+
60
+ ## 20.4.38 (2022-12-21)
61
+
62
+ ### ProgressBar
63
+
64
+ #### Bug Fixes
65
+
66
+ - `#I420052` - Now progress bar API reference are refreshing properly.
67
+
68
+ ## 20.3.57 (2022-11-15)
69
+
70
+ ### ProgressBar
71
+
72
+ #### Bug Fixes
73
+
74
+ - `#I416343` - Now corner radius is applied when applying the range colors for Progress bar.
75
+
76
+ ## 20.3.56 (2022-11-08)
77
+
78
+ ### ProgressBar
79
+
80
+ #### Bug Fixes
81
+
82
+ - `#I414756` - Now animation duration is working properly for indeterminate mode.
83
+
84
+ ## 19.1.54 (2021-03-30)
85
+
86
+ ### ProgressBar
87
+
88
+ #### Bug Fixes
89
+
90
+ - `#F159325` - ProgressBar renders inside the Grid with out any console error.
91
+
92
+ ## 18.2.47 (2020-07-28)
93
+
94
+ ### ProgressBar
95
+
96
+ #### Bug Fixes
97
+
98
+ - `#156094` - ShowProgressValue is now working properly on dynamic update.
99
+
100
+ ## 18.2.46 (2020-07-21)
101
+
102
+ ### ProgressBar
103
+
104
+ #### Bug Fixes
105
+
106
+ - `#16027` - Progress bar not updating when initially having value null or zero issue fixed.
107
+
108
+ ## 18.2.45 (2020-07-14)
109
+
110
+ ### ProgressBar
111
+
112
+ #### New Features
113
+
114
+ - Provided support to indicate the active state of the progress.
115
+ - Provided support for striped progress bar.
116
+ - Provided support to place the labels at the center and far ends of the track.
117
+ - Provided support to segment the progress of a task.
118
+ - Provided support to indicate success, info, warning, and danger of using different colors.
119
+
120
+ #### Bug Fixes
121
+
122
+ - Progress bar label not render at end of the progress has been fixed.
123
+ - SetAttribute of undefined issue raised when calling show() method has been fixed.
124
+
125
+ ## 18.2.44 (2020-07-07)
126
+
127
+ ### ProgressBar
128
+
129
+ #### Bug Fixes
130
+
131
+ - Progress bar label not render at end of the progress has been fixed.
132
+
133
+ undefinedThe progress bar provides a customizable visual to indicate the progress of a task with different shape such as rectangle and circle.
134
+
135
+ ## 18.1.42 (2020-04-01)
136
+
137
+ ### ProgressBar
138
+
139
+ ProgressBar control is used to visualize the changing status of an extended operation such as a download, file transfer, or installation. All Progress bar elements are rendered by using Scalable Vector Graphics (SVG).
140
+
141
+
142
+ ### Key features
143
+
144
+ - Visualizes the progress in different shapes, such as rectangle and circle.
145
+ - Customizes the ranges with different colors.
146
+ - Customizes the progress and tracks thickness.
147
+ - Displays the custom content at the center of the circular progress bar.
148
+ - Visualizes the progress in segments.
149
+ - Customizes the angle of the circular progress bar.
150
+
151
+