@syncfusion/ej2-angular-progressbar 20.4.48 → 21.1.35-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.
- package/@syncfusion/ej2-angular-progressbar.es5.js +270 -0
- package/@syncfusion/ej2-angular-progressbar.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-progressbar.js +242 -0
- package/@syncfusion/ej2-angular-progressbar.js.map +1 -0
- package/CHANGELOG.md +103 -0
- package/dist/ej2-angular-progressbar.umd.js +319 -0
- package/dist/ej2-angular-progressbar.umd.js.map +1 -0
- package/dist/ej2-angular-progressbar.umd.min.js +11 -0
- package/dist/ej2-angular-progressbar.umd.min.js.map +1 -0
- package/ej2-angular-progressbar.d.ts +5 -0
- package/ej2-angular-progressbar.metadata.json +1 -0
- package/package.json +15 -29
- package/postinstall/tagchange.js +18 -0
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +1 -1
- package/src/progressbar/annotations.directive.d.ts +2 -7
- package/src/progressbar/progressbar-all.module.d.ts +1 -6
- package/src/progressbar/progressbar.component.d.ts +1 -3
- package/src/progressbar/progressbar.module.d.ts +0 -7
- package/esm2020/public_api.mjs +0 -3
- package/esm2020/src/index.mjs +0 -6
- package/esm2020/src/progressbar/annotations.directive.mjs +0 -62
- package/esm2020/src/progressbar/progressbar-all.module.mjs +0 -29
- package/esm2020/src/progressbar/progressbar.component.mjs +0 -71
- package/esm2020/src/progressbar/progressbar.module.mjs +0 -34
- package/esm2020/syncfusion-ej2-angular-progressbar.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +0 -190
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +0 -190
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
- package/syncfusion-ej2-angular-progressbar.d.ts +0 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
### ProgressBar
|
|
6
|
+
|
|
7
|
+
#### New Features
|
|
8
|
+
|
|
9
|
+
- `#I386691` - Provided support to display tooltips during initial load of progress bars and mouse hover with numeric or text values of the progress.
|
|
10
|
+
- Provided support to customize the width and color of the secondary progress bar.
|
|
11
|
+
|
|
12
|
+
## 20.4.38 (2022-12-21)
|
|
13
|
+
|
|
14
|
+
### ProgressBar
|
|
15
|
+
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- `#I420052` - Now progress bar API reference are refreshing properly.
|
|
19
|
+
|
|
20
|
+
## 20.3.57 (2022-11-15)
|
|
21
|
+
|
|
22
|
+
### ProgressBar
|
|
23
|
+
|
|
24
|
+
#### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- `#I416343` - Now corner radius is applied when applying the range colors for Progress bar.
|
|
27
|
+
|
|
28
|
+
## 20.3.56 (2022-11-08)
|
|
29
|
+
|
|
30
|
+
### ProgressBar
|
|
31
|
+
|
|
32
|
+
#### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- `#I414756` - Now animation duration is working properly for indeterminate mode.
|
|
35
|
+
|
|
36
|
+
## 19.1.54 (2021-03-30)
|
|
37
|
+
|
|
38
|
+
### ProgressBar
|
|
39
|
+
|
|
40
|
+
#### Bug Fixes
|
|
41
|
+
|
|
42
|
+
- `#F159325` - ProgressBar renders inside the Grid with out any console error.
|
|
43
|
+
|
|
44
|
+
## 18.2.47 (2020-07-28)
|
|
45
|
+
|
|
46
|
+
### ProgressBar
|
|
47
|
+
|
|
48
|
+
#### Bug Fixes
|
|
49
|
+
|
|
50
|
+
- `#156094` - ShowProgressValue is now working properly on dynamic update.
|
|
51
|
+
|
|
52
|
+
## 18.2.46 (2020-07-21)
|
|
53
|
+
|
|
54
|
+
### ProgressBar
|
|
55
|
+
|
|
56
|
+
#### Bug Fixes
|
|
57
|
+
|
|
58
|
+
- `#16027` - Progress bar not updating when initially having value null or zero issue fixed.
|
|
59
|
+
|
|
60
|
+
## 18.2.45 (2020-07-14)
|
|
61
|
+
|
|
62
|
+
### ProgressBar
|
|
63
|
+
|
|
64
|
+
#### New Features
|
|
65
|
+
|
|
66
|
+
- Provided support to indicate the active state of the progress.
|
|
67
|
+
- Provided support for striped progress bar.
|
|
68
|
+
- Provided support to place the labels at the center and far ends of the track.
|
|
69
|
+
- Provided support to segment the progress of a task.
|
|
70
|
+
- Provided support to indicate success, info, warning, and danger of using different colors.
|
|
71
|
+
|
|
72
|
+
#### Bug Fixes
|
|
73
|
+
|
|
74
|
+
- Progress bar label not render at end of the progress has been fixed.
|
|
75
|
+
- SetAttribute of undefined issue raised when calling show() method has been fixed.
|
|
76
|
+
|
|
77
|
+
## 18.2.44 (2020-07-07)
|
|
78
|
+
|
|
79
|
+
### ProgressBar
|
|
80
|
+
|
|
81
|
+
#### Bug Fixes
|
|
82
|
+
|
|
83
|
+
- Progress bar label not render at end of the progress has been fixed.
|
|
84
|
+
|
|
85
|
+
undefinedThe progress bar provides a customizable visual to indicate the progress of a task with different shape such as rectangle and circle.
|
|
86
|
+
|
|
87
|
+
## 18.1.42 (2020-04-01)
|
|
88
|
+
|
|
89
|
+
### ProgressBar
|
|
90
|
+
|
|
91
|
+
ProgressBar control is used to visualize the changing status of an extended operation such as a download, file transfer, or installation. All Progress bar elements are rendered by using Scalable Vector Graphics (SVG).
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Key features
|
|
95
|
+
|
|
96
|
+
- Visualizes the progress in different shapes, such as rectangle and circle.
|
|
97
|
+
- Customizes the ranges with different colors.
|
|
98
|
+
- Customizes the progress and tracks thickness.
|
|
99
|
+
- Displays the custom content at the center of the circular progress bar.
|
|
100
|
+
- Visualizes the progress in segments.
|
|
101
|
+
- Customizes the angle of the circular progress bar.
|
|
102
|
+
|
|
103
|
+
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* filename: ej2-angular-progressbar.umd.js
|
|
3
|
+
* version : 21.1.35
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2020. 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 __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
109
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
110
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
111
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
112
|
+
else
|
|
113
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
114
|
+
if (d = decorators[i])
|
|
115
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
116
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
117
|
+
};
|
|
118
|
+
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
119
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
120
|
+
return Reflect.metadata(k, v);
|
|
121
|
+
};
|
|
122
|
+
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'];
|
|
123
|
+
var outputs$1 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'tooltipRender', 'valueChanged'];
|
|
124
|
+
var twoWays = [''];
|
|
125
|
+
/**
|
|
126
|
+
* ProgressBar Component
|
|
127
|
+
* ```html
|
|
128
|
+
* <ejsprogressbar></ejsprogressbar>
|
|
129
|
+
* ```
|
|
130
|
+
*/
|
|
131
|
+
exports.ProgressBarComponent = /** @class */ (function (_super) {
|
|
132
|
+
__extends(ProgressBarComponent, _super);
|
|
133
|
+
/**
|
|
134
|
+
* @param {?} ngEle
|
|
135
|
+
* @param {?} srenderer
|
|
136
|
+
* @param {?} viewContainerRef
|
|
137
|
+
* @param {?} injector
|
|
138
|
+
*/
|
|
139
|
+
function ProgressBarComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
140
|
+
var _this = _super.call(this) || this;
|
|
141
|
+
_this.ngEle = ngEle;
|
|
142
|
+
_this.srenderer = srenderer;
|
|
143
|
+
_this.viewContainerRef = viewContainerRef;
|
|
144
|
+
_this.injector = injector;
|
|
145
|
+
_this.tags = ['annotations'];
|
|
146
|
+
_this.element = _this.ngEle.nativeElement;
|
|
147
|
+
_this.injectedModules = _this.injectedModules || [];
|
|
148
|
+
try {
|
|
149
|
+
var mod = _this.injector.get('ProgressBarProgressAnnotation');
|
|
150
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
151
|
+
_this.injectedModules.push(mod);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
catch (_a) { }
|
|
155
|
+
try {
|
|
156
|
+
var mod = _this.injector.get('ProgressBarProgressTooltip');
|
|
157
|
+
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
158
|
+
_this.injectedModules.push(mod);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
catch (_b) { }
|
|
162
|
+
_this.registerEvents(outputs$1);
|
|
163
|
+
_this.addTwoWay.call(_this, twoWays);
|
|
164
|
+
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
165
|
+
_this.context = new ej2AngularBase.ComponentBase();
|
|
166
|
+
return _this;
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* @return {?}
|
|
170
|
+
*/
|
|
171
|
+
ProgressBarComponent.prototype.ngOnInit = function () {
|
|
172
|
+
this.context.ngOnInit(this);
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* @return {?}
|
|
176
|
+
*/
|
|
177
|
+
ProgressBarComponent.prototype.ngAfterViewInit = function () {
|
|
178
|
+
this.context.ngAfterViewInit(this);
|
|
179
|
+
};
|
|
180
|
+
/**
|
|
181
|
+
* @return {?}
|
|
182
|
+
*/
|
|
183
|
+
ProgressBarComponent.prototype.ngOnDestroy = function () {
|
|
184
|
+
this.context.ngOnDestroy(this);
|
|
185
|
+
};
|
|
186
|
+
/**
|
|
187
|
+
* @return {?}
|
|
188
|
+
*/
|
|
189
|
+
ProgressBarComponent.prototype.ngAfterContentChecked = function () {
|
|
190
|
+
this.tagObjects[0].instance = this.childAnnotations;
|
|
191
|
+
this.context.ngAfterContentChecked(this);
|
|
192
|
+
};
|
|
193
|
+
return ProgressBarComponent;
|
|
194
|
+
}(ej2Progressbar.ProgressBar));
|
|
195
|
+
exports.ProgressBarComponent.decorators = [
|
|
196
|
+
{ type: core.Component, args: [{
|
|
197
|
+
selector: 'ejs-progressbar',
|
|
198
|
+
inputs: inputs,
|
|
199
|
+
outputs: outputs$1,
|
|
200
|
+
template: '',
|
|
201
|
+
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
202
|
+
queries: {
|
|
203
|
+
childAnnotations: new core.ContentChild(ProgressBarAnnotationsDirective)
|
|
204
|
+
}
|
|
205
|
+
},] },
|
|
206
|
+
];
|
|
207
|
+
/**
|
|
208
|
+
* @nocollapse
|
|
209
|
+
*/
|
|
210
|
+
exports.ProgressBarComponent.ctorParameters = function () { return [
|
|
211
|
+
{ type: core.ElementRef, },
|
|
212
|
+
{ type: core.Renderer2, },
|
|
213
|
+
{ type: core.ViewContainerRef, },
|
|
214
|
+
{ type: core.Injector, },
|
|
215
|
+
]; };
|
|
216
|
+
exports.ProgressBarComponent = __decorate$1([
|
|
217
|
+
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
|
|
218
|
+
__metadata$1("design:paramtypes", [core.ElementRef,
|
|
219
|
+
core.Renderer2,
|
|
220
|
+
core.ViewContainerRef,
|
|
221
|
+
core.Injector])
|
|
222
|
+
], exports.ProgressBarComponent);
|
|
223
|
+
/**
|
|
224
|
+
* NgModule definition for the ProgressBar component.
|
|
225
|
+
*/
|
|
226
|
+
var ProgressBarModule = /** @class */ (function () {
|
|
227
|
+
function ProgressBarModule() {
|
|
228
|
+
}
|
|
229
|
+
return ProgressBarModule;
|
|
230
|
+
}());
|
|
231
|
+
ProgressBarModule.decorators = [
|
|
232
|
+
{ type: core.NgModule, args: [{
|
|
233
|
+
imports: [common.CommonModule],
|
|
234
|
+
declarations: [
|
|
235
|
+
exports.ProgressBarComponent,
|
|
236
|
+
ProgressBarAnnotationDirective,
|
|
237
|
+
ProgressBarAnnotationsDirective
|
|
238
|
+
],
|
|
239
|
+
exports: [
|
|
240
|
+
exports.ProgressBarComponent,
|
|
241
|
+
ProgressBarAnnotationDirective,
|
|
242
|
+
ProgressBarAnnotationsDirective
|
|
243
|
+
]
|
|
244
|
+
},] },
|
|
245
|
+
];
|
|
246
|
+
/**
|
|
247
|
+
* @nocollapse
|
|
248
|
+
*/
|
|
249
|
+
ProgressBarModule.ctorParameters = function () { return []; };
|
|
250
|
+
var ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ej2Progressbar.ProgressAnnotation };
|
|
251
|
+
var ProgressTooltipService = { provide: 'ProgressBarProgressTooltip', useValue: ej2Progressbar.ProgressTooltip };
|
|
252
|
+
/**
|
|
253
|
+
* NgModule definition for the ProgressBar component with providers.
|
|
254
|
+
*/
|
|
255
|
+
var ProgressBarAllModule = /** @class */ (function () {
|
|
256
|
+
function ProgressBarAllModule() {
|
|
257
|
+
}
|
|
258
|
+
return ProgressBarAllModule;
|
|
259
|
+
}());
|
|
260
|
+
ProgressBarAllModule.decorators = [
|
|
261
|
+
{ type: core.NgModule, args: [{
|
|
262
|
+
imports: [common.CommonModule, ProgressBarModule],
|
|
263
|
+
exports: [
|
|
264
|
+
ProgressBarModule
|
|
265
|
+
],
|
|
266
|
+
providers: [
|
|
267
|
+
ProgressAnnotationService,
|
|
268
|
+
ProgressTooltipService
|
|
269
|
+
]
|
|
270
|
+
},] },
|
|
271
|
+
];
|
|
272
|
+
/**
|
|
273
|
+
* @nocollapse
|
|
274
|
+
*/
|
|
275
|
+
ProgressBarAllModule.ctorParameters = function () { return []; };
|
|
276
|
+
|
|
277
|
+
exports.ProgressBarAnnotationDirective = ProgressBarAnnotationDirective;
|
|
278
|
+
exports.ProgressBarAnnotationsDirective = ProgressBarAnnotationsDirective;
|
|
279
|
+
exports.ProgressBarModule = ProgressBarModule;
|
|
280
|
+
exports.ProgressBarAllModule = ProgressBarAllModule;
|
|
281
|
+
exports.ProgressAnnotationService = ProgressAnnotationService;
|
|
282
|
+
exports.ProgressTooltipService = ProgressTooltipService;
|
|
283
|
+
exports.ɵa = inputs;
|
|
284
|
+
exports.ɵb = outputs$1;
|
|
285
|
+
exports.ProgressBar = ej2Progressbar.ProgressBar;
|
|
286
|
+
exports.Margin = ej2Progressbar.Margin;
|
|
287
|
+
exports.Font = ej2Progressbar.Font;
|
|
288
|
+
exports.Animation = ej2Progressbar.Animation;
|
|
289
|
+
exports.ProgressAnnotationSettings = ej2Progressbar.ProgressAnnotationSettings;
|
|
290
|
+
exports.Border = ej2Progressbar.Border;
|
|
291
|
+
exports.TooltipSettings = ej2Progressbar.TooltipSettings;
|
|
292
|
+
exports.RangeColor = ej2Progressbar.RangeColor;
|
|
293
|
+
exports.ProgressAnnotation = ej2Progressbar.ProgressAnnotation;
|
|
294
|
+
exports.ProgressTooltip = ej2Progressbar.ProgressTooltip;
|
|
295
|
+
exports.Rect = ej2Progressbar.Rect;
|
|
296
|
+
exports.Size = ej2Progressbar.Size;
|
|
297
|
+
exports.Pos = ej2Progressbar.Pos;
|
|
298
|
+
exports.RectOption = ej2Progressbar.RectOption;
|
|
299
|
+
exports.ColorValue = ej2Progressbar.ColorValue;
|
|
300
|
+
exports.convertToHexCode = ej2Progressbar.convertToHexCode;
|
|
301
|
+
exports.componentToHex = ej2Progressbar.componentToHex;
|
|
302
|
+
exports.convertHexToColor = ej2Progressbar.convertHexToColor;
|
|
303
|
+
exports.colorNameToHex = ej2Progressbar.colorNameToHex;
|
|
304
|
+
exports.TextOption = ej2Progressbar.TextOption;
|
|
305
|
+
exports.degreeToLocation = ej2Progressbar.degreeToLocation;
|
|
306
|
+
exports.getPathArc = ej2Progressbar.getPathArc;
|
|
307
|
+
exports.stringToNumber = ej2Progressbar.stringToNumber;
|
|
308
|
+
exports.setAttributes = ej2Progressbar.setAttributes;
|
|
309
|
+
exports.effect = ej2Progressbar.effect;
|
|
310
|
+
exports.annotationRender = ej2Progressbar.annotationRender;
|
|
311
|
+
exports.getElement = ej2Progressbar.getElement;
|
|
312
|
+
exports.removeElement = ej2Progressbar.removeElement;
|
|
313
|
+
exports.ProgressLocation = ej2Progressbar.ProgressLocation;
|
|
314
|
+
exports.ProgressAnimation = ej2Progressbar.ProgressAnimation;
|
|
315
|
+
|
|
316
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
317
|
+
|
|
318
|
+
})));
|
|
319
|
+
//# 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/annotations.directive.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation, 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 { ProgressBarComponent } from './progressbar.component';\n/**\n * NgModule definition for the ProgressBar component.\n */\nexport class ProgressBarModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressBar } from '@syncfusion/ej2-progressbar';\n\nimport { ProgressBarAnnotationsDirective } from './annotations.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['animation','annotations','cornerRadius','enablePersistence','enablePieProgress','enableProgressSegments','enableRtl','endAngle','gapWidth','height','innerRadius','isActive','isGradient','isIndeterminate','isStriped','labelOnTrack','labelStyle','locale','margin','maximum','minimum','progressColor','progressThickness','radius','rangeColors','role','secondaryProgress','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 tags: string[] = ['annotations'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('ProgressBarProgressAnnotation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n 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 this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-progressbar',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction ProgressBarComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarComponent.ctorParameters;\n/** @type {?} */\nProgressBarComponent.prototype.context;\n/** @type {?} */\nProgressBarComponent.prototype.tagObjects;\n/** @type {?} */\nProgressBarComponent.prototype.animationComplete;\n/** @type {?} */\nProgressBarComponent.prototype.load;\n/** @type {?} */\nProgressBarComponent.prototype.loaded;\n/** @type {?} */\nProgressBarComponent.prototype.mouseClick;\n/** @type {?} */\nProgressBarComponent.prototype.mouseDown;\n/** @type {?} */\nProgressBarComponent.prototype.mouseLeave;\n/** @type {?} */\nProgressBarComponent.prototype.mouseMove;\n/** @type {?} */\nProgressBarComponent.prototype.mouseUp;\n/** @type {?} */\nProgressBarComponent.prototype.progressCompleted;\n/** @type {?} */\nProgressBarComponent.prototype.textRender;\n/** @type {?} */\nProgressBarComponent.prototype.tooltipRender;\n/** @type {?} */\nProgressBarComponent.prototype.valueChanged;\n/** @type {?} */\nProgressBarComponent.prototype.childAnnotations;\n/** @type {?} */\nProgressBarComponent.prototype.tags;\n/** @type {?} */\nProgressBarComponent.prototype.registerEvents;\n/** @type {?} */\nProgressBarComponent.prototype.addTwoWay;\n/** @type {?} */\nProgressBarComponent.prototype.ngEle;\n/** @type {?} */\nProgressBarComponent.prototype.srenderer;\n/** @type {?} */\nProgressBarComponent.prototype.viewContainerRef;\n/** @type {?} */\nProgressBarComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['annotationAngle', 'annotationRadius', 'content'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * ProgressBarAnnotations Directive\n * ```html\n * <e-progressbar-annotations>\n * <e-progressbar-annotation></e-progressbar-annotation>\n * </e-progressbar-annotations>\n * ```\n */\nexport class ProgressBarAnnotationDirective extends ComplexBase<ProgressBarAnnotationDirective> {\npublic directivePropList: any;\n/**\n * to move annotation\n * \\@default 0\n */\npublic annotationAngle: any;\n/**\n * to move annotation\n * \\@default '0%'\n */\npublic annotationRadius: any;\n/**\n * Content of the annotation, which accepts the id of the custom element.\n * \\@default null\n */\n@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-progressbar-annotations>e-progressbar-annotation',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction ProgressBarAnnotationDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAnnotationDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAnnotationDirective.ctorParameters;\n/** @type {?} */\nProgressBarAnnotationDirective.propDecorators;\n/** @type {?} */\nProgressBarAnnotationDirective.prototype.directivePropList;\n/**\n * to move annotation\n * \\@default 0\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.annotationAngle;\n/**\n * to move annotation\n * \\@default '0%'\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.annotationRadius;\n/**\n * Content of the annotation, which accepts the id of the custom element.\n * \\@default null\n * @type {?}\n */\nProgressBarAnnotationDirective.prototype.content;\n/** @type {?} */\nProgressBarAnnotationDirective.prototype.viewContainerRef;\n}\n\n/**\n * ProgressBarAnnotation Array Directive\n */\nexport class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {\nconstructor() {\n super('annotations');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ej-progressbar>e-progressbar-annotations',\n queries: {\n children: new ContentChildren(ProgressBarAnnotationDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarAnnotationsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarAnnotationsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarAnnotationsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","ProgressTooltip","ProgressAnnotation","ProgressBarComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","ContentChild","ChangeDetectionStrategy","outputs","Component","ProgressBar","setValue","ContentChildren","Directive","ArrayBase","Template","ComplexBase"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AGAA,IAKI,KAAA,GAAkB,CAAA,iBAAE,EAAkB,kBAAA,EAAoB,SAAA,CAAU,CAAC;AACzE,IAAI,OAAA,GAAoB,EAAA,CAAG;;;;;;;;;AAS3B,IAAA,8BAAA,kBAAA,UAAA,MAAA,EAAA;IACC,SAAD,CAAA,8BAAA,EAAA,MAAA,CAAA,CAAC;;;;IAoBD,SAAA,8BAAA,CAGwB,gBAAkB,EAH1C;QAAA,IAAA,KAAA,GACQ,MADR,CAAA,IAAA,CAAA,IAAA,CACe,IADf,IAAA,CAKK;QAFmB,KAAxB,CAAA,gBAAwB,GAAA,gBAAA,CAAkB;QADlCkB,uBAAQ,CAAC,iBAAiB,EAAE,KAAI,EAAE,KAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,KAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAC7B,KAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;;KAClC;;CA1BL,CACCK,0BAAA,CADD,CAAA,CAAA;AA8BO,8BAAP,CAAA,UAAO,GAAoC;IAF3C,EAGE,IAAA,EAAMH,cAAA,EAAW,IAAA,EAAM,CAAA;gBAFrB,QAAQ,EAGE,oDAAA;gBAFV,MAAM,EAGE,KAAA;gBAFR,OAAO,EAGE,OAAA;gBAFT,OAAO,EAGE,EADR;aACJ,EAGC,EAAG;CAFJ,CAGC;;;;AAED,8BAAD,CAAA,cAAC,GAAA,YAAD,EAAC,OAAA;IAAD,EAAC,IAAI,EAAEd,qBAAgB,GAAG;CACzB,CAAD,EAAC,CAAC;AAEK,8BAAP,CAAA,cAAO,GAAyD;IAAhE,SAAS,EACE,CAAA,EAAG,IAAA,EAAMO,iBAAA,EAAc,IAAA,EAAM,CAAA,SAAE,EAAS,EAAG,EAAE;CAAvD,CACC;AA7BE,UAAJ,CAAA;IAIKS,uBAAA,EAAA;;CAJL,EAAA,8BAAA,CAAA,SAAA,EAAA,SAAA,EAAA,KAAA,CAAA,CAAwB,CAAxB;;;;AAoEA,IAAA,+BAAA,kBAAA,UAAA,MAAA,EAAA;IA/BC,SAAD,CAAA,+BAAA,EAAA,MAAA,CAAA,CAAC;IAgCD,SAAA,+BAAA,GAAA;QACA,OAAQ,MAAR,CAAA,IAAA,CAAA,IAAA,EAAc,aAAa,CAAC,IAA5B,IAAA,CAAA;KACK;;CAHL,CA/BCD,wBAAA,CA+BD,CAAA,CAAA;AA3BO,+BAAP,CAAA,UAAO,GAAoC;IAgC3C,EA/BE,IAAA,EAAMD,cAAA,EAAW,IAAA,EAAM,CAAA;gBAgCrB,QAAQ,EA/BE,0CAAA;gBAgCV,OAAO,EA/BE;oBAgCL,QAAQ,EA/BE,IAAID,oBAAA,CAAgB,8BAAC,CAA8B;iBAgChE;aACJ,EA/BC,EAAG;CAgCJ,CA/BC;;;;AAED,+BAAD,CAAA,cAAC,GAAA,YAAD,EAAC,OAAA,EAkCA,CAlCD,EAkCC,CAAC;;;;;;;;;;;;;;;ADpHF,IAMa,MAAA,GAAmB,CAAA,WAAE,EAAW,aAAC,EAAa,cAAC,EAAc,mBAAC,EAAmB,mBAAC,EAAmB,wBAAC,EAAwB,WAAC,EAAW,UAAC,EAAU,UAAC,EAAU,QAAC,EAAQ,aAAC,EAAa,UAAC,EAAU,YAAC,EAAY,iBAAC,EAAiB,WAAC,EAAW,cAAC,EAAc,YAAC,EAAY,QAAC,EAAQ,QAAC,EAAQ,SAAC,EAAS,SAAC,EAAS,eAAC,EAAe,mBAAC,EAAmB,QAAC,EAAQ,aAAC,EAAa,MAAC,EAAM,mBAAC,EAAmB,wBAAC,EAAwB,4BAAC,EAA4B,cAAC,EAAc,cAAC,EAAc,mBAAC,EAAmB,YAAC,EAAY,OAAC,EAAO,SAAC,EAAS,YAAC,EAAY,gBAAC,EAAgB,MAAC,EAAM,OAAC,EAAO,OAAC,CAAO,CAAC;AAC/kB,IAAaJ,SAAA,GAAoB,CAAA,mBAAE,EAAmB,MAAC,EAAM,QAAC,EAAQ,YAAC,EAAY,WAAC,EAAW,YAAC,EAAY,WAAC,EAAW,SAAC,EAAS,mBAAC,EAAmB,YAAC,EAAY,eAAC,EAAe,cAAC,CAAc,CAAC;AACnM,IAAa,OAAA,GAAoB,CAAA,EAAE,CAAE,CAAC;;;;;;;AAQtC,AAAaX,4BAAoB,kBAAjC,UAAA,MAAA,EAAA;IAA0C,SAA1C,CAAA,oBAAA,EAAA,MAAA,CAAA,CAAqD;;;;;;;IAuBrD,SAAA,oBAAA,CAHwB,KAAO,EAAoB,SAAW,EAAmB,gBAAkB,EAAyB,QAAU,EAGtI;QAAA,IAAA,KAAA,GAIQ,MAJR,CAAA,IAAA,CAAA,IAAA,CAIe,IAJf,IAAA,CAwBK;QA3BmB,KAAxB,CAAA,KAAwB,GAAA,KAAA,CAAO;QAAoB,KAAnD,CAAA,SAAmD,GAAA,SAAA,CAAW;QAAmB,KAAjF,CAAA,gBAAiF,GAAA,gBAAA,CAAkB;QAAyB,KAA5H,CAAA,QAA4H,GAAA,QAAA,CAAU;QAF3H,KAAX,CAAA,IAAW,GAAiB,CAAA,aAAE,CAAa,CAAC;QAUpC,KAAI,CAAC,OAAO,GAAG,KAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,KAAI,CAAC,eAAe,GAAG,KAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAClD,IAAI;YACI,IAAI,GAAG,GAAG,KAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,+BAA+B,CAAC,CAAC;YAC7D,IAAG,KAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;gBACzC,KAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;aACjC;SACJ;QAAC,OAAO,EAArB,EAAoB,GAAG;QACf,IAAI;YACI,IAAI,GAAG,GAAG,KAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC;YAC1D,IAAG,KAAI,CAAC,eAAe,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,EAAE;gBACzC,KAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;aACjC;SACJ;QAAC,OAAO,EAArB,EAAoB,GAAG;QAEf,KAAI,CAAC,cAAc,CAACW,SAAO,CAAC,CAAC;QAC7B,KAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAI,EAAE,OAAO,CAAC,CAAC;QACnCG,uBAAQ,CAAC,iBAAiB,EAAE,KAAI,EAAE,KAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,KAAI,CAAC,OAAO,GAAI,IAAIP,4BAAa,EAAE,CAAC;;KACvC;;;;IAJA,oBAAL,CAAA,SAAA,CAAA,QAAK,GAAA,YAAL;QASQ,IAAI,CARC,OAAC,CAAO,QAAC,CAAQ,IAAC,CAAI,CAAC;KAS/B,CAAL;;;;IANK,oBAAL,CAAA,SAAA,CAAA,eAAK,GAAA,YAAL;QAWQ,IAAI,CAVC,OAAC,CAAO,eAAC,CAAe,IAAC,CAAI,CAAC;KAWtC,CAAL;;;;IARK,oBAAL,CAAA,SAAA,CAAA,WAAK,GAAA,YAAL;QAaQ,IAAI,CAZC,OAAC,CAAO,WAAC,CAAW,IAAC,CAAI,CAAC;KAalC,CAAL;;;;IAVK,oBAAL,CAAA,SAAA,CAAA,qBAAK,GAAA,YAAL;QAeQ,IAAI,CAdC,UAAC,CAAU,CAAC,CAAC,CAAC,QAAC,GAAU,IAAA,CAAK,gBAAC,CAAgB;QAepD,IAAI,CAdC,OAAC,CAAO,qBAAC,CAAqB,IAAC,CAAI,CAAC;KAe5C,CAAL;IAwBA,OAAA,oBAAC,CAAD;CAAC,CAhGyCM,0BAAW,CAgGrD,CAAC,CAAA;AAlCMb,4BAAP,CAAA,UAAO,GAAoC;IAc3C,EAbE,IAAA,EAAMY,cAAA,EAAW,IAAA,EAAM,CAAA;gBAcrB,QAAQ,EAbE,iBAAA;gBAcV,MAAM,EAbE,MAAA;gBAcR,OAAO,EAbED,SAAA;gBAcT,QAAQ,EAbE,EAAA;gBAIZ,eAAA,EAHmBD,4BAAA,CAAwB,MAAC;gBAc1C,OAAO,EAbE;oBAcL,gBAAgB,EAbE,IAAID,iBAAA,CAAa,+BAAC,CAA+B;iBActE;aACJ,EAbC,EAAG;CAcJ,CAbC;;;;AAEDT,4BAAD,CAAA,cAAC,GAAA,YAAD,EAAC,OAAA;IAgBD,EAAC,IAAI,EAAEK,eAAU,GAAG;IACpB,EAAC,IAAI,EAAEF,cAAS,GAAG;IACnB,EAAC,IAAI,EAAED,qBAAgB,GAAG;IAC1B,EAAC,IAAI,EAAED,aAAQ,GAAG;CACjB,CAAD,EAAC,CAAC;AA/FWD,4BAAoB,GAAjCQ,YAAA,CAAA;IACCF,8BAAA,CAAA,CAAAC,4BAAA,CAAA,CAAA;IAmBDH,YAAA,CAAA,mBAAA,EAAA,CAA+BC,eAAA;QAA+BF,cAAA;QAAoCD,qBAAC;QAAmCD,aAAA,CAAtI,CAAA;CApBA,EAAaD,4BAAoB,CAgGhC,CAhGD;;;;ADTA,IAAA,iBAAA,kBAAA,YAAA;IAAA,SAAA,iBAAA,GAAA;;;CAAA,EAAA,CAAA,CAAA;AAEwC,iBAAxC,CAAA,UAAwC,GAAoC;IAD5E,EAEE,IAAA,EAAMH,aAAA,EAAU,IAAA,EAAM,CAAA;gBADpB,OAAO,EAEE,CAAAD,mBAAE,CAAY;gBADvB,YAAY,EAEE;oBADVI,4BAAoB;oBACpB,8BAA8B;oBAC9B,+BAA+B;iBAClC;gBACD,OAAO,EAEE;oBADLA,4BAAoB;oBACpB,8BAA8B;oBAC9B,+BAA+B;iBAClC;aACJ,EAEC,EAAG;CADJ,CAEC;;;;AAED,iBAAD,CAAA,cAAC,GAAA,YAAD,EAAC,OAAA,EACA,CADD,EACC,CAAC;ADlBK,IAAM,yBAAA,GAA2C,EAAE,OAAA,EAAS,+BAAA,EAAiC,QAAA,EAAUD,iCAAA,EAAmB,CAAC;AAClI,IAAa,sBAAA,GAAwC,EAAE,OAAA,EAAS,4BAAA,EAA8B,QAAA,EAAUD,8BAAA,EAAgB,CAAC;;;;AAIzH,IAAA,oBAAA,kBAAA,YAAA;IAAA,SAAA,oBAAA,GAAA;;;CAAA,EAAA,CAAA,CAAA;AAE2C,oBAA3C,CAAA,UAA2C,GAAoC;IAD/E,EAEE,IAAA,EAAMD,aAAA,EAAU,IAAA,EAAM,CAAA;gBADpB,OAAO,EAEE,CAAAD,mBAAE,EAAa,iBAAA,CAAkB;gBAD1C,OAAO,EAEE;oBADL,iBAAiB;iBACpB;gBACD,SAAS,EAEC;oBADN,yBAAyB;oBACzB,sBAAsB;iBACzB;aACJ,EAEC,EAAG;CADJ,CAEC;;;;AAED,oBAAD,CAAA,cAAC,GAAA,YAAD,EAAC,OAAA,EACA,CADD,EACC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* filename: ej2-angular-progressbar.umd.min.js
|
|
3
|
+
* version : 21.1.35
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2020. 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,o,n,r){"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 o in t)t.hasOwnProperty(o)&&(e[o]=t[o])};return function(t,o){function n(){this.constructor=t}e(t,o),t.prototype=null===o?Object.create(o):(n.prototype=o.prototype,new n)}}(),i=this&&this.__decorate||function(e,t,o,n){var r,s=arguments.length,i=s<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,o,n);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(i=(s<3?r(i):s>3?r(t,o,i):r(t,o))||i);return s>3&&i&&Object.defineProperty(t,o,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 n=e.call(this)||this;return n.viewContainerRef=t,o.setValue("currentInstance",n,n.viewContainerRef),n.registerEvents(l),n.directivePropList=c,n}return s(t,e),t}(o.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([o.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}(o.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=this&&this.__decorate||function(e,t,o,n){var r,s=arguments.length,i=s<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,o):n;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,o,n);else for(var a=e.length-1;a>=0;a--)(r=e[a])&&(i=(s<3?r(i):s>3?r(t,o,i):r(t,o))||i);return s>3&&i&&Object.defineProperty(t,o,i),i},d=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},f=["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"],m=["animationComplete","load","loaded","mouseClick","mouseDown","mouseLeave","mouseMove","mouseUp","progressCompleted","textRender","tooltipRender","valueChanged"],P=[""];e.ProgressBarComponent=function(e){function t(t,n,r,s){var i=e.call(this)||this;i.ngEle=t,i.srenderer=n,i.viewContainerRef=r,i.injector=s,i.tags=["annotations"],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(m),i.addTwoWay.call(i,P),o.setValue("currentInstance",i,i.viewContainerRef),i.context=new o.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.context.ngAfterContentChecked(this)},t}(n.ProgressBar),e.ProgressBarComponent.decorators=[{type:t.Component,args:[{selector:"ejs-progressbar",inputs:f,outputs:m,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{childAnnotations:new t.ContentChild(g)}}]}],e.ProgressBarComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.ProgressBarComponent=p([o.ComponentMixins([o.ComponentBase]),d("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.ProgressBarComponent);var h=function(){return function(){}}();h.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.ProgressBarComponent,u,g],exports:[e.ProgressBarComponent,u,g]}]}],h.ctorParameters=function(){return[]};var y={provide:"ProgressBarProgressAnnotation",useValue:n.ProgressAnnotation},C={provide:"ProgressBarProgressTooltip",useValue:n.ProgressTooltip},v=function(){return function(){}}();v.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,h],exports:[h],providers:[y,C]}]}],v.ctorParameters=function(){return[]},e.ProgressBarAnnotationDirective=u,e.ProgressBarAnnotationsDirective=g,e.ProgressBarModule=h,e.ProgressBarAllModule=v,e.ProgressAnnotationService=y,e.ProgressTooltipService=C,e.ɵa=f,e.ɵb=m,e.ProgressBar=n.ProgressBar,e.Margin=n.Margin,e.Font=n.Font,e.Animation=n.Animation,e.ProgressAnnotationSettings=n.ProgressAnnotationSettings,e.Border=n.Border,e.TooltipSettings=n.TooltipSettings,e.RangeColor=n.RangeColor,e.ProgressAnnotation=n.ProgressAnnotation,e.ProgressTooltip=n.ProgressTooltip,e.Rect=n.Rect,e.Size=n.Size,e.Pos=n.Pos,e.RectOption=n.RectOption,e.ColorValue=n.ColorValue,e.convertToHexCode=n.convertToHexCode,e.componentToHex=n.componentToHex,e.convertHexToColor=n.convertHexToColor,e.colorNameToHex=n.colorNameToHex,e.TextOption=n.TextOption,e.degreeToLocation=n.degreeToLocation,e.getPathArc=n.getPathArc,e.stringToNumber=n.stringToNumber,e.setAttributes=n.setAttributes,e.effect=n.effect,e.annotationRender=n.annotationRender,e.getElement=n.getElement,e.removeElement=n.removeElement,e.ProgressLocation=n.ProgressLocation,e.ProgressAnimation=n.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/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 { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressBar } from '@syncfusion/ej2-progressbar';\n\nimport { ProgressBarAnnotationsDirective } from './annotations.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['animation','annotations','cornerRadius','enablePersistence','enablePieProgress','enableProgressSegments','enableRtl','endAngle','gapWidth','height','innerRadius','isActive','isGradient','isIndeterminate','isStriped','labelOnTrack','labelStyle','locale','margin','maximum','minimum','progressColor','progressThickness','radius','rangeColors','role','secondaryProgress','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 tags: string[] = ['annotations'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('ProgressBarProgressAnnotation');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n 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 this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-progressbar',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction ProgressBarComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarComponent.ctorParameters;\n/** @type {?} */\nProgressBarComponent.prototype.context;\n/** @type {?} */\nProgressBarComponent.prototype.tagObjects;\n/** @type {?} */\nProgressBarComponent.prototype.animationComplete;\n/** @type {?} */\nProgressBarComponent.prototype.load;\n/** @type {?} */\nProgressBarComponent.prototype.loaded;\n/** @type {?} */\nProgressBarComponent.prototype.mouseClick;\n/** @type {?} */\nProgressBarComponent.prototype.mouseDown;\n/** @type {?} */\nProgressBarComponent.prototype.mouseLeave;\n/** @type {?} */\nProgressBarComponent.prototype.mouseMove;\n/** @type {?} */\nProgressBarComponent.prototype.mouseUp;\n/** @type {?} */\nProgressBarComponent.prototype.progressCompleted;\n/** @type {?} */\nProgressBarComponent.prototype.textRender;\n/** @type {?} */\nProgressBarComponent.prototype.tooltipRender;\n/** @type {?} */\nProgressBarComponent.prototype.valueChanged;\n/** @type {?} */\nProgressBarComponent.prototype.childAnnotations;\n/** @type {?} */\nProgressBarComponent.prototype.tags;\n/** @type {?} */\nProgressBarComponent.prototype.registerEvents;\n/** @type {?} */\nProgressBarComponent.prototype.addTwoWay;\n/** @type {?} */\nProgressBarComponent.prototype.ngEle;\n/** @type {?} */\nProgressBarComponent.prototype.srenderer;\n/** @type {?} */\nProgressBarComponent.prototype.viewContainerRef;\n/** @type {?} */\nProgressBarComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\n/**\n * NgModule definition for the ProgressBar component.\n */\nexport class ProgressBarModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressBarModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressBarModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressBarModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation, 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","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","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 @@
|
|
|
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"}]}},"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"}]}}}]},{"__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"}],"exports":[{"__symbolic":"reference","name":"ProgressBarComponent"},{"__symbolic":"reference","name":"ProgressBarAnnotationDirective"},{"__symbolic":"reference","name":"ProgressBarAnnotationsDirective"}]}]}],"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","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,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-progressbar@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-progressbar@
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-progressbar@18.15.2",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512
|
|
5
|
+
"_integrity": "sha512-+4uJVjoe6arm0vtAbRmbleGqL6ivbpUOA3PaWxYh0iykQtu8scgDrTGazv9judkmE98wZk8lOD17/dswUNejEQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-progressbar",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-angular-progressbar/-/ej2-angular-progressbar-18.15.2.tgz",
|
|
23
|
+
"_shasum": "d5ab04fce4e6eecc9c099afe5ecb4527b0961cd1",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-progressbar@*",
|
|
25
|
-
"_where": "/jenkins/workspace/
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,30 +31,14 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~
|
|
35
|
-
"@syncfusion/ej2-base": "~
|
|
36
|
-
"@syncfusion/ej2-progressbar": "
|
|
37
|
-
"tslib": "^2.3.0"
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~21.1.35",
|
|
35
|
+
"@syncfusion/ej2-base": "~21.1.35",
|
|
36
|
+
"@syncfusion/ej2-progressbar": "21.1.35"
|
|
38
37
|
},
|
|
39
38
|
"deprecated": false,
|
|
40
39
|
"description": "Essential JS 2 ProgressBar Component for Angular",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"exports": {
|
|
44
|
-
"./package.json": {
|
|
45
|
-
"default": "./package.json"
|
|
46
|
-
},
|
|
47
|
-
".": {
|
|
48
|
-
"types": "./syncfusion-ej2-angular-progressbar.d.ts",
|
|
49
|
-
"esm2020": "./esm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
50
|
-
"es2020": "./fesm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
51
|
-
"es2015": "./fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
52
|
-
"node": "./fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
53
|
-
"default": "./fesm2020/syncfusion-ej2-angular-progressbar.mjs"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
"fesm2015": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
57
|
-
"fesm2020": "fesm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
40
|
+
"devDependencies": {},
|
|
41
|
+
"es2015": "@syncfusion/ej2-angular-progressbar.js",
|
|
58
42
|
"homepage": "https://www.syncfusion.com/angular-components",
|
|
59
43
|
"keywords": [
|
|
60
44
|
"angular",
|
|
@@ -64,7 +48,9 @@
|
|
|
64
48
|
"ej2-angular-progressbar"
|
|
65
49
|
],
|
|
66
50
|
"license": "SEE LICENSE IN license",
|
|
67
|
-
"
|
|
51
|
+
"main": "dist/ej2-angular-progressbar.umd.js",
|
|
52
|
+
"metadata": "ej2-angular-progressbar.metadata.json",
|
|
53
|
+
"module": "@syncfusion/ej2-angular-progressbar.es5.js",
|
|
68
54
|
"name": "@syncfusion/ej2-angular-progressbar",
|
|
69
55
|
"repository": {
|
|
70
56
|
"type": "git",
|
|
@@ -72,6 +58,6 @@
|
|
|
72
58
|
},
|
|
73
59
|
"schematics": "./schematics/collection.json",
|
|
74
60
|
"sideEffects": false,
|
|
75
|
-
"typings": "
|
|
76
|
-
"version": "
|
|
61
|
+
"typings": "ej2-angular-progressbar.d.ts",
|
|
62
|
+
"version": "21.1.35-ngcc"
|
|
77
63
|
}
|