@syncfusion/ej2-angular-progressbar 31.2.2 → 31.2.12-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 (35) 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/LICENSE +10 -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 +10 -23
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/index.d.ts +6 -6
  17. package/src/progressbar/annotations.directive.d.ts +37 -42
  18. package/src/progressbar/progressbar-all.module.d.ts +8 -14
  19. package/src/progressbar/progressbar.component.d.ts +44 -47
  20. package/src/progressbar/progressbar.module.d.ts +5 -13
  21. package/src/progressbar/rangecolors.directive.d.ts +29 -34
  22. package/CHANGELOG.md +0 -178
  23. package/esm2020/public_api.mjs +0 -2
  24. package/esm2020/src/index.mjs +0 -7
  25. package/esm2020/src/progressbar/annotations.directive.mjs +0 -62
  26. package/esm2020/src/progressbar/progressbar-all.module.mjs +0 -32
  27. package/esm2020/src/progressbar/progressbar.component.mjs +0 -83
  28. package/esm2020/src/progressbar/progressbar.module.mjs +0 -43
  29. package/esm2020/src/progressbar/rangecolors.directive.mjs +0 -46
  30. package/esm2020/syncfusion-ej2-angular-progressbar.mjs +0 -5
  31. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +0 -253
  32. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  33. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +0 -253
  34. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  35. package/syncfusion-ej2-angular-progressbar.d.ts +0 -5
@@ -0,0 +1,382 @@
1
+ /*!
2
+ * filename: ej2-angular-progressbar.umd.js
3
+ * version : 31.2.12
4
+ * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
+ * Use of this code is subject to the terms of our license.
6
+ * A copy of the current license can be obtained at any time by e-mailing
7
+ * licensing@syncfusion.com. Any infringement will be prosecuted under
8
+ * applicable laws.
9
+ */
10
+ (function (global, factory) {
11
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-progressbar'), require('@angular/common')) :
12
+ typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-progressbar', '@angular/common'], factory) :
13
+ (factory((global['ej2-angular-progressbar'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.progressbar,global.ng.common));
14
+ }(this, (function (exports,core,ej2AngularBase,ej2Progressbar,common) { 'use strict';
15
+
16
+ var __extends = (this && this.__extends) || (function () {
17
+ var extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
+ return function (d, b) {
21
+ extendStatics(d, b);
22
+ function __() { this.constructor = d; }
23
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
+ };
25
+ })();
26
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
+ r = Reflect.decorate(decorators, target, key, desc);
30
+ else
31
+ for (var i = decorators.length - 1; i >= 0; i--)
32
+ if (d = decorators[i])
33
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
35
+ };
36
+ var __metadata = (this && this.__metadata) || function (k, v) {
37
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
+ return Reflect.metadata(k, v);
39
+ };
40
+ var input = ['annotationAngle', 'annotationRadius', 'content'];
41
+ var outputs = [];
42
+ /**
43
+ * ProgressBarAnnotations Directive
44
+ * ```html
45
+ * <e-progressbar-annotations>
46
+ * <e-progressbar-annotation></e-progressbar-annotation>
47
+ * </e-progressbar-annotations>
48
+ * ```
49
+ */
50
+ var ProgressBarAnnotationDirective = /** @class */ (function (_super) {
51
+ __extends(ProgressBarAnnotationDirective, _super);
52
+ /**
53
+ * @param {?} viewContainerRef
54
+ */
55
+ function ProgressBarAnnotationDirective(viewContainerRef) {
56
+ var _this = _super.call(this) || this;
57
+ _this.viewContainerRef = viewContainerRef;
58
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
59
+ _this.registerEvents(outputs);
60
+ _this.directivePropList = input;
61
+ return _this;
62
+ }
63
+ return ProgressBarAnnotationDirective;
64
+ }(ej2AngularBase.ComplexBase));
65
+ ProgressBarAnnotationDirective.decorators = [
66
+ { type: core.Directive, args: [{
67
+ selector: 'e-progressbar-annotations>e-progressbar-annotation',
68
+ inputs: input,
69
+ outputs: outputs,
70
+ queries: {}
71
+ },] },
72
+ ];
73
+ /**
74
+ * @nocollapse
75
+ */
76
+ ProgressBarAnnotationDirective.ctorParameters = function () { return [
77
+ { type: core.ViewContainerRef, },
78
+ ]; };
79
+ ProgressBarAnnotationDirective.propDecorators = {
80
+ 'content': [{ type: core.ContentChild, args: ['content',] },],
81
+ };
82
+ __decorate([
83
+ ej2AngularBase.Template(),
84
+ __metadata("design:type", Object)
85
+ ], ProgressBarAnnotationDirective.prototype, "content", void 0);
86
+ /**
87
+ * ProgressBarAnnotation Array Directive
88
+ */
89
+ var ProgressBarAnnotationsDirective = /** @class */ (function (_super) {
90
+ __extends(ProgressBarAnnotationsDirective, _super);
91
+ function ProgressBarAnnotationsDirective() {
92
+ return _super.call(this, 'annotations') || this;
93
+ }
94
+ return ProgressBarAnnotationsDirective;
95
+ }(ej2AngularBase.ArrayBase));
96
+ ProgressBarAnnotationsDirective.decorators = [
97
+ { type: core.Directive, args: [{
98
+ selector: 'ej-progressbar>e-progressbar-annotations',
99
+ queries: {
100
+ children: new core.ContentChildren(ProgressBarAnnotationDirective)
101
+ },
102
+ },] },
103
+ ];
104
+ /**
105
+ * @nocollapse
106
+ */
107
+ ProgressBarAnnotationsDirective.ctorParameters = function () { return []; };
108
+ var input$1 = ['color', 'end', 'start'];
109
+ var outputs$1 = [];
110
+ var RangeColorDirective = /** @class */ (function (_super) {
111
+ __extends(RangeColorDirective, _super);
112
+ /**
113
+ * @param {?} viewContainerRef
114
+ */
115
+ function RangeColorDirective(viewContainerRef) {
116
+ var _this = _super.call(this) || this;
117
+ _this.viewContainerRef = viewContainerRef;
118
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
119
+ _this.registerEvents(outputs$1);
120
+ _this.directivePropList = input$1;
121
+ return _this;
122
+ }
123
+ return RangeColorDirective;
124
+ }(ej2AngularBase.ComplexBase));
125
+ RangeColorDirective.decorators = [
126
+ { type: core.Directive, args: [{
127
+ selector: 'e-rangecolors>e-rangecolor',
128
+ inputs: input$1,
129
+ outputs: outputs$1,
130
+ queries: {}
131
+ },] },
132
+ ];
133
+ /**
134
+ * @nocollapse
135
+ */
136
+ RangeColorDirective.ctorParameters = function () { return [
137
+ { type: core.ViewContainerRef, },
138
+ ]; };
139
+ /**
140
+ * RangeColor Array Directive
141
+ */
142
+ var RangeColorsDirective = /** @class */ (function (_super) {
143
+ __extends(RangeColorsDirective, _super);
144
+ function RangeColorsDirective() {
145
+ return _super.call(this, 'rangecolors') || this;
146
+ }
147
+ return RangeColorsDirective;
148
+ }(ej2AngularBase.ArrayBase));
149
+ RangeColorsDirective.decorators = [
150
+ { type: core.Directive, args: [{
151
+ selector: 'ejs-progressbar>e-rangecolors',
152
+ queries: {
153
+ children: new core.ContentChildren(RangeColorDirective)
154
+ },
155
+ },] },
156
+ ];
157
+ /**
158
+ * @nocollapse
159
+ */
160
+ RangeColorsDirective.ctorParameters = function () { return []; };
161
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
162
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
163
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
164
+ r = Reflect.decorate(decorators, target, key, desc);
165
+ else
166
+ for (var i = decorators.length - 1; i >= 0; i--)
167
+ if (d = decorators[i])
168
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
169
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
170
+ };
171
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
172
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
173
+ return Reflect.metadata(k, v);
174
+ };
175
+ 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', 'secondaryProgressColor', 'secondaryProgressThickness', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'tooltip', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
176
+ var outputs$2 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'tooltipRender', 'valueChanged'];
177
+ var twoWays = [''];
178
+ /**
179
+ * ProgressBar Component
180
+ * ```html
181
+ * <ejsprogressbar></ejsprogressbar>
182
+ * ```
183
+ */
184
+ exports.ProgressBarComponent = /** @class */ (function (_super) {
185
+ __extends(ProgressBarComponent, _super);
186
+ /**
187
+ * @param {?} ngEle
188
+ * @param {?} srenderer
189
+ * @param {?} viewContainerRef
190
+ * @param {?} injector
191
+ */
192
+ function ProgressBarComponent(ngEle, srenderer, viewContainerRef, injector) {
193
+ var _this = _super.call(this) || this;
194
+ _this.ngEle = ngEle;
195
+ _this.srenderer = srenderer;
196
+ _this.viewContainerRef = viewContainerRef;
197
+ _this.injector = injector;
198
+ _this.tags = ['annotations', 'rangeColors'];
199
+ _this.element = _this.ngEle.nativeElement;
200
+ _this.injectedModules = _this.injectedModules || [];
201
+ try {
202
+ var mod = _this.injector.get('ProgressBarProgressAnnotation');
203
+ if (_this.injectedModules.indexOf(mod) === -1) {
204
+ _this.injectedModules.push(mod);
205
+ }
206
+ }
207
+ catch (_a) { }
208
+ try {
209
+ var mod = _this.injector.get('ProgressBarProgressTooltip');
210
+ if (_this.injectedModules.indexOf(mod) === -1) {
211
+ _this.injectedModules.push(mod);
212
+ }
213
+ }
214
+ catch (_b) { }
215
+ _this.registerEvents(outputs$2);
216
+ _this.addTwoWay.call(_this, twoWays);
217
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
218
+ _this.context = new ej2AngularBase.ComponentBase();
219
+ return _this;
220
+ }
221
+ /**
222
+ * @return {?}
223
+ */
224
+ ProgressBarComponent.prototype.ngOnInit = function () {
225
+ this.context.ngOnInit(this);
226
+ };
227
+ /**
228
+ * @return {?}
229
+ */
230
+ ProgressBarComponent.prototype.ngAfterViewInit = function () {
231
+ this.context.ngAfterViewInit(this);
232
+ };
233
+ /**
234
+ * @return {?}
235
+ */
236
+ ProgressBarComponent.prototype.ngOnDestroy = function () {
237
+ this.context.ngOnDestroy(this);
238
+ };
239
+ /**
240
+ * @return {?}
241
+ */
242
+ ProgressBarComponent.prototype.ngAfterContentChecked = function () {
243
+ this.tagObjects[0].instance = this.childAnnotations;
244
+ if (this.childRangeColors) {
245
+ this.tagObjects[1].instance = /** @type {?} */ (this.childRangeColors);
246
+ }
247
+ this.context.ngAfterContentChecked(this);
248
+ };
249
+ return ProgressBarComponent;
250
+ }(ej2Progressbar.ProgressBar));
251
+ exports.ProgressBarComponent.decorators = [
252
+ { type: core.Component, args: [{
253
+ selector: 'ejs-progressbar',
254
+ inputs: inputs,
255
+ outputs: outputs$2,
256
+ template: '',
257
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
258
+ queries: {
259
+ childAnnotations: new core.ContentChild(ProgressBarAnnotationsDirective),
260
+ childRangeColors: new core.ContentChild(RangeColorsDirective)
261
+ }
262
+ },] },
263
+ ];
264
+ /**
265
+ * @nocollapse
266
+ */
267
+ exports.ProgressBarComponent.ctorParameters = function () { return [
268
+ { type: core.ElementRef, },
269
+ { type: core.Renderer2, },
270
+ { type: core.ViewContainerRef, },
271
+ { type: core.Injector, },
272
+ ]; };
273
+ exports.ProgressBarComponent = __decorate$1([
274
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
275
+ __metadata$1("design:paramtypes", [core.ElementRef,
276
+ core.Renderer2,
277
+ core.ViewContainerRef,
278
+ core.Injector])
279
+ ], exports.ProgressBarComponent);
280
+ /**
281
+ * NgModule definition for the ProgressBar component.
282
+ */
283
+ var ProgressBarModule = /** @class */ (function () {
284
+ function ProgressBarModule() {
285
+ }
286
+ return ProgressBarModule;
287
+ }());
288
+ ProgressBarModule.decorators = [
289
+ { type: core.NgModule, args: [{
290
+ imports: [common.CommonModule],
291
+ declarations: [
292
+ exports.ProgressBarComponent,
293
+ ProgressBarAnnotationDirective,
294
+ ProgressBarAnnotationsDirective,
295
+ RangeColorDirective,
296
+ RangeColorsDirective
297
+ ],
298
+ exports: [
299
+ exports.ProgressBarComponent,
300
+ ProgressBarAnnotationDirective,
301
+ ProgressBarAnnotationsDirective,
302
+ RangeColorDirective,
303
+ RangeColorsDirective
304
+ ]
305
+ },] },
306
+ ];
307
+ /**
308
+ * @nocollapse
309
+ */
310
+ ProgressBarModule.ctorParameters = function () { return []; };
311
+ var ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ej2Progressbar.ProgressAnnotation };
312
+ var ProgressTooltipService = { provide: 'ProgressBarProgressTooltip', useValue: ej2Progressbar.ProgressTooltip };
313
+ /**
314
+ * NgModule definition for the ProgressBar component with providers.
315
+ */
316
+ var ProgressBarAllModule = /** @class */ (function () {
317
+ function ProgressBarAllModule() {
318
+ }
319
+ return ProgressBarAllModule;
320
+ }());
321
+ ProgressBarAllModule.decorators = [
322
+ { type: core.NgModule, args: [{
323
+ imports: [common.CommonModule, ProgressBarModule],
324
+ exports: [
325
+ ProgressBarModule
326
+ ],
327
+ providers: [
328
+ ProgressAnnotationService,
329
+ ProgressTooltipService
330
+ ]
331
+ },] },
332
+ ];
333
+ /**
334
+ * @nocollapse
335
+ */
336
+ ProgressBarAllModule.ctorParameters = function () { return []; };
337
+
338
+ exports.ProgressBarAnnotationDirective = ProgressBarAnnotationDirective;
339
+ exports.ProgressBarAnnotationsDirective = ProgressBarAnnotationsDirective;
340
+ exports.RangeColorDirective = RangeColorDirective;
341
+ exports.RangeColorsDirective = RangeColorsDirective;
342
+ exports.ProgressBarModule = ProgressBarModule;
343
+ exports.ProgressBarAllModule = ProgressBarAllModule;
344
+ exports.ProgressAnnotationService = ProgressAnnotationService;
345
+ exports.ProgressTooltipService = ProgressTooltipService;
346
+ exports.ɵa = inputs;
347
+ exports.ɵb = outputs$2;
348
+ exports.ProgressBar = ej2Progressbar.ProgressBar;
349
+ exports.Margin = ej2Progressbar.Margin;
350
+ exports.Font = ej2Progressbar.Font;
351
+ exports.Animation = ej2Progressbar.Animation;
352
+ exports.ProgressAnnotationSettings = ej2Progressbar.ProgressAnnotationSettings;
353
+ exports.Border = ej2Progressbar.Border;
354
+ exports.TooltipSettings = ej2Progressbar.TooltipSettings;
355
+ exports.RangeColor = ej2Progressbar.RangeColor;
356
+ exports.ProgressAnnotation = ej2Progressbar.ProgressAnnotation;
357
+ exports.ProgressTooltip = ej2Progressbar.ProgressTooltip;
358
+ exports.Rect = ej2Progressbar.Rect;
359
+ exports.Size = ej2Progressbar.Size;
360
+ exports.Pos = ej2Progressbar.Pos;
361
+ exports.RectOption = ej2Progressbar.RectOption;
362
+ exports.ColorValue = ej2Progressbar.ColorValue;
363
+ exports.convertToHexCode = ej2Progressbar.convertToHexCode;
364
+ exports.componentToHex = ej2Progressbar.componentToHex;
365
+ exports.convertHexToColor = ej2Progressbar.convertHexToColor;
366
+ exports.colorNameToHex = ej2Progressbar.colorNameToHex;
367
+ exports.TextOption = ej2Progressbar.TextOption;
368
+ exports.degreeToLocation = ej2Progressbar.degreeToLocation;
369
+ exports.getPathArc = ej2Progressbar.getPathArc;
370
+ exports.stringToNumber = ej2Progressbar.stringToNumber;
371
+ exports.setAttributes = ej2Progressbar.setAttributes;
372
+ exports.effect = ej2Progressbar.effect;
373
+ exports.annotationRender = ej2Progressbar.annotationRender;
374
+ exports.getElement = ej2Progressbar.getElement;
375
+ exports.removeElement = ej2Progressbar.removeElement;
376
+ exports.ProgressLocation = ej2Progressbar.ProgressLocation;
377
+ exports.ProgressAnimation = ej2Progressbar.ProgressAnimation;
378
+
379
+ Object.defineProperty(exports, '__esModule', { value: true });
380
+
381
+ })));
382
+ //# sourceMappingURL=ej2-angular-progressbar.umd.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-angular-progressbar.umd.js","sources":["~/@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":["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":["CommonModule","NgModule","ProgressTooltip","ProgressAnnotation","ProgressBarComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","ContentChild","ChangeDetectionStrategy","outputs","Component","ProgressBar","setValue","ContentChildren","Directive","ArrayBase","input","ComplexBase","Template"],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ /*!
2
+ * filename: ej2-angular-progressbar.umd.min.js
3
+ * version : 31.2.12
4
+ * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
+ * Use of this code is subject to the terms of our license.
6
+ * A copy of the current license can be obtained at any time by e-mailing
7
+ * licensing@syncfusion.com. Any infringement will be prosecuted under
8
+ * applicable laws.
9
+ */
10
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-progressbar"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-progressbar","@angular/common"],t):t(e["ej2-angular-progressbar"]={},e.ng.core,e.ej2.angular.base,e.ej2.progressbar,e.ng.common)}(this,function(e,t,r,o,n){"use strict";var s=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])};return function(t,r){function o(){this.constructor=t}e(t,r),t.prototype=null===r?Object.create(r):(o.prototype=r.prototype,new o)}}(),i=this&&this.__decorate||function(e,t,r,o){var n,s=arguments.length,i=s<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,o);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(i=(s<3?n(i):s>3?n(t,r,i):n(t,r))||i);return s>3&&i&&Object.defineProperty(t,r,i),i},a=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},c=["annotationAngle","annotationRadius","content"],l=[],u=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(l),o.directivePropList=c,o}return s(t,e),t}(r.ComplexBase);u.decorators=[{type:t.Directive,args:[{selector:"e-progressbar-annotations>e-progressbar-annotation",inputs:c,outputs:l,queries:{}}]}],u.ctorParameters=function(){return[{type:t.ViewContainerRef}]},u.propDecorators={content:[{type:t.ContentChild,args:["content"]}]},i([r.Template(),a("design:type",Object)],u.prototype,"content",void 0);var g=function(e){function t(){return e.call(this,"annotations")||this}return s(t,e),t}(r.ArrayBase);g.decorators=[{type:t.Directive,args:[{selector:"ej-progressbar>e-progressbar-annotations",queries:{children:new t.ContentChildren(u)}}]}],g.ctorParameters=function(){return[]};var p=["color","end","start"],d=[],f=function(e){function t(t){var o=e.call(this)||this;return o.viewContainerRef=t,r.setValue("currentInstance",o,o.viewContainerRef),o.registerEvents(d),o.directivePropList=p,o}return s(t,e),t}(r.ComplexBase);f.decorators=[{type:t.Directive,args:[{selector:"e-rangecolors>e-rangecolor",inputs:p,outputs:d,queries:{}}]}],f.ctorParameters=function(){return[{type:t.ViewContainerRef}]};var m=function(e){function t(){return e.call(this,"rangecolors")||this}return s(t,e),t}(r.ArrayBase);m.decorators=[{type:t.Directive,args:[{selector:"ejs-progressbar>e-rangecolors",queries:{children:new t.ContentChildren(f)}}]}],m.ctorParameters=function(){return[]};var h=this&&this.__decorate||function(e,t,r,o){var n,s=arguments.length,i=s<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,r):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,r,o);else for(var a=e.length-1;a>=0;a--)(n=e[a])&&(i=(s<3?n(i):s>3?n(t,r,i):n(t,r))||i);return s>3&&i&&Object.defineProperty(t,r,i),i},P=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},C=["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"],y=["animationComplete","load","loaded","mouseClick","mouseDown","mouseLeave","mouseMove","mouseUp","progressCompleted","textRender","tooltipRender","valueChanged"],v=[""];e.ProgressBarComponent=function(e){function t(t,o,n,s){var i=e.call(this)||this;i.ngEle=t,i.srenderer=o,i.viewContainerRef=n,i.injector=s,i.tags=["annotations","rangeColors"],i.element=i.ngEle.nativeElement,i.injectedModules=i.injectedModules||[];try{var a=i.injector.get("ProgressBarProgressAnnotation");-1===i.injectedModules.indexOf(a)&&i.injectedModules.push(a)}catch(c){}try{a=i.injector.get("ProgressBarProgressTooltip");-1===i.injectedModules.indexOf(a)&&i.injectedModules.push(a)}catch(l){}return i.registerEvents(y),i.addTwoWay.call(i,v),r.setValue("currentInstance",i,i.viewContainerRef),i.context=new r.ComponentBase,i}return s(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.tagObjects[0].instance=this.childAnnotations,this.childRangeColors&&(this.tagObjects[1].instance=this.childRangeColors),this.context.ngAfterContentChecked(this)},t}(o.ProgressBar),e.ProgressBarComponent.decorators=[{type:t.Component,args:[{selector:"ejs-progressbar",inputs:C,outputs:y,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{childAnnotations:new t.ContentChild(g),childRangeColors:new t.ContentChild(m)}}]}],e.ProgressBarComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.ProgressBarComponent=h([r.ComponentMixins([r.ComponentBase]),P("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.ProgressBarComponent);var R=function(){return function(){}}();R.decorators=[{type:t.NgModule,args:[{imports:[n.CommonModule],declarations:[e.ProgressBarComponent,u,g,f,m],exports:[e.ProgressBarComponent,u,g,f,m]}]}],R.ctorParameters=function(){return[]};var b={provide:"ProgressBarProgressAnnotation",useValue:o.ProgressAnnotation},j={provide:"ProgressBarProgressTooltip",useValue:o.ProgressTooltip},A=function(){return function(){}}();A.decorators=[{type:t.NgModule,args:[{imports:[n.CommonModule,R],exports:[R],providers:[b,j]}]}],A.ctorParameters=function(){return[]},e.ProgressBarAnnotationDirective=u,e.ProgressBarAnnotationsDirective=g,e.RangeColorDirective=f,e.RangeColorsDirective=m,e.ProgressBarModule=R,e.ProgressBarAllModule=A,e.ProgressAnnotationService=b,e.ProgressTooltipService=j,e.ɵa=C,e.ɵb=y,e.ProgressBar=o.ProgressBar,e.Margin=o.Margin,e.Font=o.Font,e.Animation=o.Animation,e.ProgressAnnotationSettings=o.ProgressAnnotationSettings,e.Border=o.Border,e.TooltipSettings=o.TooltipSettings,e.RangeColor=o.RangeColor,e.ProgressAnnotation=o.ProgressAnnotation,e.ProgressTooltip=o.ProgressTooltip,e.Rect=o.Rect,e.Size=o.Size,e.Pos=o.Pos,e.RectOption=o.RectOption,e.ColorValue=o.ColorValue,e.convertToHexCode=o.convertToHexCode,e.componentToHex=o.componentToHex,e.convertHexToColor=o.convertHexToColor,e.colorNameToHex=o.colorNameToHex,e.TextOption=o.TextOption,e.degreeToLocation=o.degreeToLocation,e.getPathArc=o.getPathArc,e.stringToNumber=o.stringToNumber,e.setAttributes=o.setAttributes,e.effect=o.effect,e.annotationRender=o.annotationRender,e.getElement=o.getElement,e.removeElement=o.removeElement,e.ProgressLocation=o.ProgressLocation,e.ProgressAnimation=o.ProgressAnimation,Object.defineProperty(e,"__esModule",{value:!0})});
11
+ //# sourceMappingURL=ej2-angular-progressbar.umd.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-angular-progressbar.umd.min.js","sources":["~/@syncfusion/ej2-angular-progressbar/src/progressbar/annotations.directive.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/rangecolors.directive.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar.component.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar.module.ts","~/@syncfusion/ej2-angular-progressbar/src/progressbar/progressbar-all.module.ts"],"sourcesContent":["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","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 { 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 { 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 { 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"],"names":["input","outputs","ProgressBarAnnotationDirective","_super","viewContainerRef","_this","call","this","setValue","registerEvents","directivePropList","__extends","ComplexBase","decorators","type","Directive","args","selector","inputs","queries","ctorParameters","ViewContainerRef","propDecorators","content","ContentChild","__decorate","Template","prototype","ProgressBarAnnotationsDirective","ArrayBase","children","ContentChildren","RangeColorDirective","RangeColorsDirective","twoWays","exports","ProgressBarComponent","ngEle","srenderer","injector","tags","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","addTwoWay","context","ComponentBase","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","tagObjects","instance","childAnnotations","childRangeColors","ProgressBar","Component","template","changeDetection","ChangeDetectionStrategy","OnPush","ElementRef","Renderer2","Injector","ComponentMixins","__metadata","ProgressBarModule","NgModule","imports","CommonModule","declarations","ProgressAnnotationService","provide","useValue","ProgressAnnotation","ProgressTooltipService","ProgressTooltip","ProgressBarAllModule","providers"],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public_api';
5
+ export { inputs as ɵa, outputs as ɵb } from './src/progressbar/progressbar.component';
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-progressbar"}],"metadata":{"ɵa":["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"],"ɵb":["animationComplete","load","loaded","mouseClick","mouseDown","mouseLeave","mouseMove","mouseUp","progressCompleted","textRender","tooltipRender","valueChanged"],"ProgressBarAnnotationDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"e-progressbar-annotations>e-progressbar-annotation","inputs":["annotationAngle","annotationRadius","content"],"outputs":[],"queries":{}}]}],"members":{"content":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["content"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"ProgressBarAnnotationsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ej-progressbar>e-progressbar-annotations","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"ProgressBarAnnotationDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"RangeColorDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComplexBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"e-rangecolors>e-rangecolor","inputs":["color","end","start"],"outputs":[],"queries":{}}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"}]}]}},"RangeColorsDirective":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ArrayBase"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Directive"},"arguments":[{"selector":"ejs-progressbar>e-rangecolors","queries":{"children":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChildren"},"arguments":[{"__symbolic":"reference","name":"RangeColorDirective"}]}}}]}],"members":{"__ctor__":[{"__symbolic":"constructor"}]}},"ProgressBarComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-progressbar","name":"ProgressBar"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-progressbar","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{"childAnnotations":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"ProgressBarAnnotationsDirective"}]},"childRangeColors":{"__symbolic":"new","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":[{"__symbolic":"reference","name":"RangeColorsDirective"}]}}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"ProgressBarModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"ProgressBarComponent"},{"__symbolic":"reference","name":"ProgressBarAnnotationDirective"},{"__symbolic":"reference","name":"ProgressBarAnnotationsDirective"},{"__symbolic":"reference","name":"RangeColorDirective"},{"__symbolic":"reference","name":"RangeColorsDirective"}],"exports":[{"__symbolic":"reference","name":"ProgressBarComponent"},{"__symbolic":"reference","name":"ProgressBarAnnotationDirective"},{"__symbolic":"reference","name":"ProgressBarAnnotationsDirective"},{"__symbolic":"reference","name":"RangeColorDirective"},{"__symbolic":"reference","name":"RangeColorsDirective"}]}]}],"members":{}},"ProgressBarAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"ProgressBarModule"}],"exports":[{"__symbolic":"reference","name":"ProgressBarModule"}],"providers":[{"__symbolic":"reference","name":"ProgressAnnotationService"},{"__symbolic":"reference","name":"ProgressTooltipService"}]}]}],"members":{}},"ProgressAnnotationService":{"provide":"ProgressBarProgressAnnotation","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-progressbar","name":"ProgressAnnotation"}},"ProgressTooltipService":{"provide":"ProgressBarProgressTooltip","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-progressbar","name":"ProgressTooltip"}}},"origins":{"ɵa":"./src/progressbar/progressbar.component","ɵb":"./src/progressbar/progressbar.component","ProgressBarAnnotationDirective":"./src/progressbar/annotations.directive","ProgressBarAnnotationsDirective":"./src/progressbar/annotations.directive","RangeColorDirective":"./src/progressbar/rangecolors.directive","RangeColorsDirective":"./src/progressbar/rangecolors.directive","ProgressBarComponent":"./src/progressbar/progressbar.component","ProgressBarModule":"./src/progressbar/progressbar.module","ProgressBarAllModule":"./src/progressbar/progressbar-all.module","ProgressAnnotationService":"./src/progressbar/progressbar-all.module","ProgressTooltipService":"./src/progressbar/progressbar-all.module"},"importAs":"@syncfusion/ej2-angular-progressbar"}
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-angular-progressbar",
3
- "version": "31.2.2",
3
+ "version": "31.2.12-ngcc",
4
4
  "description": "Essential JS 2 ProgressBar Component for Angular",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
7
7
  "schematics": "./schematics/collection.json",
8
8
  "dependencies": {
9
- "@syncfusion/ej2-base": "~31.2.2",
10
- "@syncfusion/ej2-angular-base": "~31.2.2",
11
- "@syncfusion/ej2-progressbar": "31.2.2"
9
+ "@syncfusion/ej2-base": "~31.2.12",
10
+ "@syncfusion/ej2-angular-base": "~31.2.12",
11
+ "@syncfusion/ej2-progressbar": "31.2.12"
12
12
  },
13
+ "devDependencies": {},
13
14
  "keywords": [
14
15
  "angular",
15
16
  "ng-progressbar",
@@ -22,24 +23,10 @@
22
23
  "url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
23
24
  },
24
25
  "sideEffects": false,
25
- "module": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
26
- "es2020": "fesm2020/syncfusion-ej2-angular-progressbar.mjs",
27
- "esm2020": "esm2020/syncfusion-ej2-angular-progressbar.mjs",
28
- "fesm2020": "fesm2020/syncfusion-ej2-angular-progressbar.mjs",
29
- "fesm2015": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
30
- "typings": "syncfusion-ej2-angular-progressbar.d.ts",
31
- "exports": {
32
- "./package.json": {
33
- "default": "./package.json"
34
- },
35
- ".": {
36
- "types": "./syncfusion-ej2-angular-progressbar.d.ts",
37
- "esm2020": "./esm2020/syncfusion-ej2-angular-progressbar.mjs",
38
- "es2020": "./fesm2020/syncfusion-ej2-angular-progressbar.mjs",
39
- "es2015": "./fesm2015/syncfusion-ej2-angular-progressbar.mjs",
40
- "node": "./fesm2015/syncfusion-ej2-angular-progressbar.mjs",
41
- "default": "./fesm2020/syncfusion-ej2-angular-progressbar.mjs"
42
- }
43
- },
26
+ "main": "dist/ej2-angular-progressbar.umd.js",
27
+ "module": "@syncfusion/ej2-angular-progressbar.es5.js",
28
+ "es2015": "@syncfusion/ej2-angular-progressbar.js",
29
+ "typings": "ej2-angular-progressbar.d.ts",
30
+ "metadata": "ej2-angular-progressbar.metadata.json",
44
31
  "homepage": "https://www.syncfusion.com/angular-components"
45
32
  }
package/public_api.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './src/index';
1
+ export * from './src/index';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-progressbar';
4
- exports.pkgVer = '^31.2.2';
4
+ exports.pkgVer = '^31.2.12';
5
5
  exports.moduleName = 'ProgressBarModule';
6
- exports.themeVer = '~31.2.2';
6
+ exports.themeVer = '~31.2.12';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-progressbar';
2
- export const pkgVer = '^31.2.2';
2
+ export const pkgVer = '^31.2.12';
3
3
  export const moduleName = 'ProgressBarModule';
4
- export const themeVer = '~31.2.2';
4
+ export const themeVer = '~31.2.12';