@syncfusion/ej2-angular-progressbar 32.1.19-ngcc → 32.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +170 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +7 -0
- package/esm2020/src/progressbar/annotations.directive.mjs +62 -0
- package/esm2020/src/progressbar/progressbar-all.module.mjs +32 -0
- package/esm2020/src/progressbar/progressbar.component.mjs +83 -0
- package/esm2020/src/progressbar/progressbar.module.mjs +43 -0
- package/esm2020/src/progressbar/rangecolors.directive.mjs +46 -0
- package/esm2020/syncfusion-ej2-angular-progressbar.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +253 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +253 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/package.json +28 -46
- package/src/progressbar/annotations.directive.d.ts +5 -0
- package/src/progressbar/progressbar-all.module.d.ts +6 -0
- package/src/progressbar/progressbar.component.d.ts +3 -0
- package/src/progressbar/progressbar.module.d.ts +8 -0
- package/src/progressbar/rangecolors.directive.d.ts +5 -0
- package/syncfusion-ej2-angular-progressbar.d.ts +5 -0
- package/@syncfusion/ej2-angular-progressbar.es5.js +0 -331
- package/@syncfusion/ej2-angular-progressbar.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-progressbar.js +0 -299
- package/@syncfusion/ej2-angular-progressbar.js.map +0 -1
- package/dist/ej2-angular-progressbar.umd.js +0 -373
- package/dist/ej2-angular-progressbar.umd.js.map +0 -1
- package/dist/ej2-angular-progressbar.umd.min.js +0 -2
- package/dist/ej2-angular-progressbar.umd.min.js.map +0 -1
- package/ej2-angular-progressbar.d.ts +0 -5
- package/ej2-angular-progressbar.metadata.json +0 -1
- package/license +0 -10
|
@@ -1,373 +0,0 @@
|
|
|
1
|
-
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-progressbar'), require('@angular/common')) :
|
|
3
|
-
typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-progressbar', '@angular/common'], factory) :
|
|
4
|
-
(factory((global['ej2-angular-progressbar'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.progressbar,global.ng.common));
|
|
5
|
-
}(this, (function (exports,core,ej2AngularBase,ej2Progressbar,common) { 'use strict';
|
|
6
|
-
|
|
7
|
-
var __extends = (this && this.__extends) || (function () {
|
|
8
|
-
var extendStatics = Object.setPrototypeOf ||
|
|
9
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
10
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
11
|
-
return function (d, b) {
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
18
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
19
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
20
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
21
|
-
else
|
|
22
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
23
|
-
if (d = decorators[i])
|
|
24
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
25
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
26
|
-
};
|
|
27
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
28
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
29
|
-
return Reflect.metadata(k, v);
|
|
30
|
-
};
|
|
31
|
-
var input = ['annotationAngle', 'annotationRadius', 'content'];
|
|
32
|
-
var outputs = [];
|
|
33
|
-
/**
|
|
34
|
-
* ProgressBarAnnotations Directive
|
|
35
|
-
* ```html
|
|
36
|
-
* <e-progressbar-annotations>
|
|
37
|
-
* <e-progressbar-annotation></e-progressbar-annotation>
|
|
38
|
-
* </e-progressbar-annotations>
|
|
39
|
-
* ```
|
|
40
|
-
*/
|
|
41
|
-
var ProgressBarAnnotationDirective = /** @class */ (function (_super) {
|
|
42
|
-
__extends(ProgressBarAnnotationDirective, _super);
|
|
43
|
-
/**
|
|
44
|
-
* @param {?} viewContainerRef
|
|
45
|
-
*/
|
|
46
|
-
function ProgressBarAnnotationDirective(viewContainerRef) {
|
|
47
|
-
var _this = _super.call(this) || this;
|
|
48
|
-
_this.viewContainerRef = viewContainerRef;
|
|
49
|
-
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
50
|
-
_this.registerEvents(outputs);
|
|
51
|
-
_this.directivePropList = input;
|
|
52
|
-
return _this;
|
|
53
|
-
}
|
|
54
|
-
return ProgressBarAnnotationDirective;
|
|
55
|
-
}(ej2AngularBase.ComplexBase));
|
|
56
|
-
ProgressBarAnnotationDirective.decorators = [
|
|
57
|
-
{ type: core.Directive, args: [{
|
|
58
|
-
selector: 'e-progressbar-annotations>e-progressbar-annotation',
|
|
59
|
-
inputs: input,
|
|
60
|
-
outputs: outputs,
|
|
61
|
-
queries: {}
|
|
62
|
-
},] },
|
|
63
|
-
];
|
|
64
|
-
/**
|
|
65
|
-
* @nocollapse
|
|
66
|
-
*/
|
|
67
|
-
ProgressBarAnnotationDirective.ctorParameters = function () { return [
|
|
68
|
-
{ type: core.ViewContainerRef, },
|
|
69
|
-
]; };
|
|
70
|
-
ProgressBarAnnotationDirective.propDecorators = {
|
|
71
|
-
'content': [{ type: core.ContentChild, args: ['content',] },],
|
|
72
|
-
};
|
|
73
|
-
__decorate([
|
|
74
|
-
ej2AngularBase.Template(),
|
|
75
|
-
__metadata("design:type", Object)
|
|
76
|
-
], ProgressBarAnnotationDirective.prototype, "content", void 0);
|
|
77
|
-
/**
|
|
78
|
-
* ProgressBarAnnotation Array Directive
|
|
79
|
-
*/
|
|
80
|
-
var ProgressBarAnnotationsDirective = /** @class */ (function (_super) {
|
|
81
|
-
__extends(ProgressBarAnnotationsDirective, _super);
|
|
82
|
-
function ProgressBarAnnotationsDirective() {
|
|
83
|
-
return _super.call(this, 'annotations') || this;
|
|
84
|
-
}
|
|
85
|
-
return ProgressBarAnnotationsDirective;
|
|
86
|
-
}(ej2AngularBase.ArrayBase));
|
|
87
|
-
ProgressBarAnnotationsDirective.decorators = [
|
|
88
|
-
{ type: core.Directive, args: [{
|
|
89
|
-
selector: 'ej-progressbar>e-progressbar-annotations',
|
|
90
|
-
queries: {
|
|
91
|
-
children: new core.ContentChildren(ProgressBarAnnotationDirective)
|
|
92
|
-
},
|
|
93
|
-
},] },
|
|
94
|
-
];
|
|
95
|
-
/**
|
|
96
|
-
* @nocollapse
|
|
97
|
-
*/
|
|
98
|
-
ProgressBarAnnotationsDirective.ctorParameters = function () { return []; };
|
|
99
|
-
var input$1 = ['color', 'end', 'start'];
|
|
100
|
-
var outputs$1 = [];
|
|
101
|
-
var RangeColorDirective = /** @class */ (function (_super) {
|
|
102
|
-
__extends(RangeColorDirective, _super);
|
|
103
|
-
/**
|
|
104
|
-
* @param {?} viewContainerRef
|
|
105
|
-
*/
|
|
106
|
-
function RangeColorDirective(viewContainerRef) {
|
|
107
|
-
var _this = _super.call(this) || this;
|
|
108
|
-
_this.viewContainerRef = viewContainerRef;
|
|
109
|
-
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
110
|
-
_this.registerEvents(outputs$1);
|
|
111
|
-
_this.directivePropList = input$1;
|
|
112
|
-
return _this;
|
|
113
|
-
}
|
|
114
|
-
return RangeColorDirective;
|
|
115
|
-
}(ej2AngularBase.ComplexBase));
|
|
116
|
-
RangeColorDirective.decorators = [
|
|
117
|
-
{ type: core.Directive, args: [{
|
|
118
|
-
selector: 'e-rangecolors>e-rangecolor',
|
|
119
|
-
inputs: input$1,
|
|
120
|
-
outputs: outputs$1,
|
|
121
|
-
queries: {}
|
|
122
|
-
},] },
|
|
123
|
-
];
|
|
124
|
-
/**
|
|
125
|
-
* @nocollapse
|
|
126
|
-
*/
|
|
127
|
-
RangeColorDirective.ctorParameters = function () { return [
|
|
128
|
-
{ type: core.ViewContainerRef, },
|
|
129
|
-
]; };
|
|
130
|
-
/**
|
|
131
|
-
* RangeColor Array Directive
|
|
132
|
-
*/
|
|
133
|
-
var RangeColorsDirective = /** @class */ (function (_super) {
|
|
134
|
-
__extends(RangeColorsDirective, _super);
|
|
135
|
-
function RangeColorsDirective() {
|
|
136
|
-
return _super.call(this, 'rangecolors') || this;
|
|
137
|
-
}
|
|
138
|
-
return RangeColorsDirective;
|
|
139
|
-
}(ej2AngularBase.ArrayBase));
|
|
140
|
-
RangeColorsDirective.decorators = [
|
|
141
|
-
{ type: core.Directive, args: [{
|
|
142
|
-
selector: 'ejs-progressbar>e-rangecolors',
|
|
143
|
-
queries: {
|
|
144
|
-
children: new core.ContentChildren(RangeColorDirective)
|
|
145
|
-
},
|
|
146
|
-
},] },
|
|
147
|
-
];
|
|
148
|
-
/**
|
|
149
|
-
* @nocollapse
|
|
150
|
-
*/
|
|
151
|
-
RangeColorsDirective.ctorParameters = function () { return []; };
|
|
152
|
-
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
153
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
154
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
155
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
156
|
-
else
|
|
157
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
158
|
-
if (d = decorators[i])
|
|
159
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
160
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
161
|
-
};
|
|
162
|
-
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
163
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
164
|
-
return Reflect.metadata(k, v);
|
|
165
|
-
};
|
|
166
|
-
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'];
|
|
167
|
-
var outputs$2 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'tooltipRender', 'valueChanged'];
|
|
168
|
-
var twoWays = [''];
|
|
169
|
-
/**
|
|
170
|
-
* ProgressBar Component
|
|
171
|
-
* ```html
|
|
172
|
-
* <ejsprogressbar></ejsprogressbar>
|
|
173
|
-
* ```
|
|
174
|
-
*/
|
|
175
|
-
exports.ProgressBarComponent = /** @class */ (function (_super) {
|
|
176
|
-
__extends(ProgressBarComponent, _super);
|
|
177
|
-
/**
|
|
178
|
-
* @param {?} ngEle
|
|
179
|
-
* @param {?} srenderer
|
|
180
|
-
* @param {?} viewContainerRef
|
|
181
|
-
* @param {?} injector
|
|
182
|
-
*/
|
|
183
|
-
function ProgressBarComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
184
|
-
var _this = _super.call(this) || this;
|
|
185
|
-
_this.ngEle = ngEle;
|
|
186
|
-
_this.srenderer = srenderer;
|
|
187
|
-
_this.viewContainerRef = viewContainerRef;
|
|
188
|
-
_this.injector = injector;
|
|
189
|
-
_this.tags = ['annotations', 'rangeColors'];
|
|
190
|
-
_this.element = _this.ngEle.nativeElement;
|
|
191
|
-
_this.injectedModules = _this.injectedModules || [];
|
|
192
|
-
try {
|
|
193
|
-
var mod = _this.injector.get('ProgressBarProgressAnnotation');
|
|
194
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
195
|
-
_this.injectedModules.push(mod);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
catch (_a) { }
|
|
199
|
-
try {
|
|
200
|
-
var mod = _this.injector.get('ProgressBarProgressTooltip');
|
|
201
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
202
|
-
_this.injectedModules.push(mod);
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
catch (_b) { }
|
|
206
|
-
_this.registerEvents(outputs$2);
|
|
207
|
-
_this.addTwoWay.call(_this, twoWays);
|
|
208
|
-
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
209
|
-
_this.context = new ej2AngularBase.ComponentBase();
|
|
210
|
-
return _this;
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
* @return {?}
|
|
214
|
-
*/
|
|
215
|
-
ProgressBarComponent.prototype.ngOnInit = function () {
|
|
216
|
-
this.context.ngOnInit(this);
|
|
217
|
-
};
|
|
218
|
-
/**
|
|
219
|
-
* @return {?}
|
|
220
|
-
*/
|
|
221
|
-
ProgressBarComponent.prototype.ngAfterViewInit = function () {
|
|
222
|
-
this.context.ngAfterViewInit(this);
|
|
223
|
-
};
|
|
224
|
-
/**
|
|
225
|
-
* @return {?}
|
|
226
|
-
*/
|
|
227
|
-
ProgressBarComponent.prototype.ngOnDestroy = function () {
|
|
228
|
-
this.context.ngOnDestroy(this);
|
|
229
|
-
};
|
|
230
|
-
/**
|
|
231
|
-
* @return {?}
|
|
232
|
-
*/
|
|
233
|
-
ProgressBarComponent.prototype.ngAfterContentChecked = function () {
|
|
234
|
-
this.tagObjects[0].instance = this.childAnnotations;
|
|
235
|
-
if (this.childRangeColors) {
|
|
236
|
-
this.tagObjects[1].instance = /** @type {?} */ (this.childRangeColors);
|
|
237
|
-
}
|
|
238
|
-
this.context.ngAfterContentChecked(this);
|
|
239
|
-
};
|
|
240
|
-
return ProgressBarComponent;
|
|
241
|
-
}(ej2Progressbar.ProgressBar));
|
|
242
|
-
exports.ProgressBarComponent.decorators = [
|
|
243
|
-
{ type: core.Component, args: [{
|
|
244
|
-
selector: 'ejs-progressbar',
|
|
245
|
-
inputs: inputs,
|
|
246
|
-
outputs: outputs$2,
|
|
247
|
-
template: '',
|
|
248
|
-
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
249
|
-
queries: {
|
|
250
|
-
childAnnotations: new core.ContentChild(ProgressBarAnnotationsDirective),
|
|
251
|
-
childRangeColors: new core.ContentChild(RangeColorsDirective)
|
|
252
|
-
}
|
|
253
|
-
},] },
|
|
254
|
-
];
|
|
255
|
-
/**
|
|
256
|
-
* @nocollapse
|
|
257
|
-
*/
|
|
258
|
-
exports.ProgressBarComponent.ctorParameters = function () { return [
|
|
259
|
-
{ type: core.ElementRef, },
|
|
260
|
-
{ type: core.Renderer2, },
|
|
261
|
-
{ type: core.ViewContainerRef, },
|
|
262
|
-
{ type: core.Injector, },
|
|
263
|
-
]; };
|
|
264
|
-
exports.ProgressBarComponent = __decorate$1([
|
|
265
|
-
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
|
|
266
|
-
__metadata$1("design:paramtypes", [core.ElementRef,
|
|
267
|
-
core.Renderer2,
|
|
268
|
-
core.ViewContainerRef,
|
|
269
|
-
core.Injector])
|
|
270
|
-
], exports.ProgressBarComponent);
|
|
271
|
-
/**
|
|
272
|
-
* NgModule definition for the ProgressBar component.
|
|
273
|
-
*/
|
|
274
|
-
var ProgressBarModule = /** @class */ (function () {
|
|
275
|
-
function ProgressBarModule() {
|
|
276
|
-
}
|
|
277
|
-
return ProgressBarModule;
|
|
278
|
-
}());
|
|
279
|
-
ProgressBarModule.decorators = [
|
|
280
|
-
{ type: core.NgModule, args: [{
|
|
281
|
-
imports: [common.CommonModule],
|
|
282
|
-
declarations: [
|
|
283
|
-
exports.ProgressBarComponent,
|
|
284
|
-
ProgressBarAnnotationDirective,
|
|
285
|
-
ProgressBarAnnotationsDirective,
|
|
286
|
-
RangeColorDirective,
|
|
287
|
-
RangeColorsDirective
|
|
288
|
-
],
|
|
289
|
-
exports: [
|
|
290
|
-
exports.ProgressBarComponent,
|
|
291
|
-
ProgressBarAnnotationDirective,
|
|
292
|
-
ProgressBarAnnotationsDirective,
|
|
293
|
-
RangeColorDirective,
|
|
294
|
-
RangeColorsDirective
|
|
295
|
-
]
|
|
296
|
-
},] },
|
|
297
|
-
];
|
|
298
|
-
/**
|
|
299
|
-
* @nocollapse
|
|
300
|
-
*/
|
|
301
|
-
ProgressBarModule.ctorParameters = function () { return []; };
|
|
302
|
-
var ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ej2Progressbar.ProgressAnnotation };
|
|
303
|
-
var ProgressTooltipService = { provide: 'ProgressBarProgressTooltip', useValue: ej2Progressbar.ProgressTooltip };
|
|
304
|
-
/**
|
|
305
|
-
* NgModule definition for the ProgressBar component with providers.
|
|
306
|
-
*/
|
|
307
|
-
var ProgressBarAllModule = /** @class */ (function () {
|
|
308
|
-
function ProgressBarAllModule() {
|
|
309
|
-
}
|
|
310
|
-
return ProgressBarAllModule;
|
|
311
|
-
}());
|
|
312
|
-
ProgressBarAllModule.decorators = [
|
|
313
|
-
{ type: core.NgModule, args: [{
|
|
314
|
-
imports: [common.CommonModule, ProgressBarModule],
|
|
315
|
-
exports: [
|
|
316
|
-
ProgressBarModule
|
|
317
|
-
],
|
|
318
|
-
providers: [
|
|
319
|
-
ProgressAnnotationService,
|
|
320
|
-
ProgressTooltipService
|
|
321
|
-
]
|
|
322
|
-
},] },
|
|
323
|
-
];
|
|
324
|
-
/**
|
|
325
|
-
* @nocollapse
|
|
326
|
-
*/
|
|
327
|
-
ProgressBarAllModule.ctorParameters = function () { return []; };
|
|
328
|
-
|
|
329
|
-
exports.ProgressBarAnnotationDirective = ProgressBarAnnotationDirective;
|
|
330
|
-
exports.ProgressBarAnnotationsDirective = ProgressBarAnnotationsDirective;
|
|
331
|
-
exports.RangeColorDirective = RangeColorDirective;
|
|
332
|
-
exports.RangeColorsDirective = RangeColorsDirective;
|
|
333
|
-
exports.ProgressBarModule = ProgressBarModule;
|
|
334
|
-
exports.ProgressBarAllModule = ProgressBarAllModule;
|
|
335
|
-
exports.ProgressAnnotationService = ProgressAnnotationService;
|
|
336
|
-
exports.ProgressTooltipService = ProgressTooltipService;
|
|
337
|
-
exports.ɵa = inputs;
|
|
338
|
-
exports.ɵb = outputs$2;
|
|
339
|
-
exports.ProgressBar = ej2Progressbar.ProgressBar;
|
|
340
|
-
exports.Margin = ej2Progressbar.Margin;
|
|
341
|
-
exports.Font = ej2Progressbar.Font;
|
|
342
|
-
exports.Animation = ej2Progressbar.Animation;
|
|
343
|
-
exports.ProgressAnnotationSettings = ej2Progressbar.ProgressAnnotationSettings;
|
|
344
|
-
exports.Border = ej2Progressbar.Border;
|
|
345
|
-
exports.TooltipSettings = ej2Progressbar.TooltipSettings;
|
|
346
|
-
exports.RangeColor = ej2Progressbar.RangeColor;
|
|
347
|
-
exports.ProgressAnnotation = ej2Progressbar.ProgressAnnotation;
|
|
348
|
-
exports.ProgressTooltip = ej2Progressbar.ProgressTooltip;
|
|
349
|
-
exports.Rect = ej2Progressbar.Rect;
|
|
350
|
-
exports.Size = ej2Progressbar.Size;
|
|
351
|
-
exports.Pos = ej2Progressbar.Pos;
|
|
352
|
-
exports.RectOption = ej2Progressbar.RectOption;
|
|
353
|
-
exports.ColorValue = ej2Progressbar.ColorValue;
|
|
354
|
-
exports.convertToHexCode = ej2Progressbar.convertToHexCode;
|
|
355
|
-
exports.componentToHex = ej2Progressbar.componentToHex;
|
|
356
|
-
exports.convertHexToColor = ej2Progressbar.convertHexToColor;
|
|
357
|
-
exports.colorNameToHex = ej2Progressbar.colorNameToHex;
|
|
358
|
-
exports.TextOption = ej2Progressbar.TextOption;
|
|
359
|
-
exports.degreeToLocation = ej2Progressbar.degreeToLocation;
|
|
360
|
-
exports.getPathArc = ej2Progressbar.getPathArc;
|
|
361
|
-
exports.stringToNumber = ej2Progressbar.stringToNumber;
|
|
362
|
-
exports.setAttributes = ej2Progressbar.setAttributes;
|
|
363
|
-
exports.effect = ej2Progressbar.effect;
|
|
364
|
-
exports.annotationRender = ej2Progressbar.annotationRender;
|
|
365
|
-
exports.getElement = ej2Progressbar.getElement;
|
|
366
|
-
exports.removeElement = ej2Progressbar.removeElement;
|
|
367
|
-
exports.ProgressLocation = ej2Progressbar.ProgressLocation;
|
|
368
|
-
exports.ProgressAnimation = ej2Progressbar.ProgressAnimation;
|
|
369
|
-
|
|
370
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
371
|
-
|
|
372
|
-
})));
|
|
373
|
-
//# sourceMappingURL=ej2-angular-progressbar.umd.js.map
|
|
@@ -1 +0,0 @@
|
|
|
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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"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
!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})});
|
|
2
|
-
//# sourceMappingURL=ej2-angular-progressbar.umd.min.js.map
|
|
@@ -1 +0,0 @@
|
|
|
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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"}
|
|
@@ -1 +0,0 @@
|
|
|
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/license
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
|
|
2
|
-
|
|
3
|
-
To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
|
|
4
|
-
|
|
5
|
-
Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
|
|
6
|
-
|
|
7
|
-
Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
|
|
8
|
-
|
|
9
|
-
The Syncfusion license that contains the terms and conditions can be found at
|
|
10
|
-
https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
|