@syncfusion/ej2-angular-progressbar 20.2.38-ngcc → 20.2.38
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +6 -0
- package/esm2020/src/progressbar/annotations.directive.mjs +62 -0
- package/esm2020/src/progressbar/progressbar-all.module.mjs +29 -0
- package/esm2020/src/progressbar/progressbar.component.mjs +71 -0
- package/esm2020/src/progressbar/progressbar.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-progressbar.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +190 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +190 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- 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 +7 -0
- package/syncfusion-ej2-angular-progressbar.d.ts +5 -0
- package/@syncfusion/ej2-angular-progressbar.es5.js +0 -261
- package/@syncfusion/ej2-angular-progressbar.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-progressbar.js +0 -233
- package/@syncfusion/ej2-angular-progressbar.js.map +0 -1
- package/CHANGELOG.md +0 -72
- package/dist/ej2-angular-progressbar.umd.js +0 -306
- package/dist/ej2-angular-progressbar.umd.js.map +0 -1
- package/dist/ej2-angular-progressbar.umd.min.js +0 -11
- 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/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
import { __decorate } from 'tslib';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { Directive, ContentChild, ContentChildren, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
|
4
|
+
import { ComplexBase, setValue, Template, ArrayBase, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
|
5
|
+
import { ProgressBar, ProgressAnnotation } from '@syncfusion/ej2-progressbar';
|
|
6
|
+
export * from '@syncfusion/ej2-progressbar';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
|
|
9
|
+
let input = ['annotationAngle', 'annotationRadius', 'content'];
|
|
10
|
+
let outputs$1 = [];
|
|
11
|
+
/**
|
|
12
|
+
* ProgressBarAnnotations Directive
|
|
13
|
+
* ```html
|
|
14
|
+
* <e-progressbar-annotations>
|
|
15
|
+
* <e-progressbar-annotation></e-progressbar-annotation>
|
|
16
|
+
* </e-progressbar-annotations>
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
class ProgressBarAnnotationDirective extends ComplexBase {
|
|
20
|
+
constructor(viewContainerRef) {
|
|
21
|
+
super();
|
|
22
|
+
this.viewContainerRef = viewContainerRef;
|
|
23
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
24
|
+
this.registerEvents(outputs$1);
|
|
25
|
+
this.directivePropList = input;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
ProgressBarAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29
|
+
ProgressBarAnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ProgressBarAnnotationDirective, selector: "e-progressbar-annotations>e-progressbar-annotation", inputs: { annotationAngle: "annotationAngle", annotationRadius: "annotationRadius", content: "content" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
|
30
|
+
__decorate([
|
|
31
|
+
Template()
|
|
32
|
+
], ProgressBarAnnotationDirective.prototype, "content", void 0);
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationDirective, decorators: [{
|
|
34
|
+
type: Directive,
|
|
35
|
+
args: [{
|
|
36
|
+
selector: 'e-progressbar-annotations>e-progressbar-annotation',
|
|
37
|
+
inputs: input,
|
|
38
|
+
outputs: outputs$1,
|
|
39
|
+
queries: {}
|
|
40
|
+
}]
|
|
41
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
42
|
+
type: ContentChild,
|
|
43
|
+
args: ['content']
|
|
44
|
+
}] } });
|
|
45
|
+
/**
|
|
46
|
+
* ProgressBarAnnotation Array Directive
|
|
47
|
+
* @private
|
|
48
|
+
*/
|
|
49
|
+
class ProgressBarAnnotationsDirective extends ArrayBase {
|
|
50
|
+
constructor() {
|
|
51
|
+
super('annotations');
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
ProgressBarAnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
55
|
+
ProgressBarAnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ProgressBarAnnotationsDirective, selector: "ej-progressbar>e-progressbar-annotations", queries: [{ propertyName: "children", predicate: ProgressBarAnnotationDirective }], usesInheritance: true, ngImport: i0 });
|
|
56
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationsDirective, decorators: [{
|
|
57
|
+
type: Directive,
|
|
58
|
+
args: [{
|
|
59
|
+
selector: 'ej-progressbar>e-progressbar-annotations',
|
|
60
|
+
queries: {
|
|
61
|
+
children: new ContentChildren(ProgressBarAnnotationDirective)
|
|
62
|
+
},
|
|
63
|
+
}]
|
|
64
|
+
}], ctorParameters: function () { return []; } });
|
|
65
|
+
|
|
66
|
+
const inputs = ['animation', 'annotations', 'cornerRadius', 'enablePersistence', 'enablePieProgress', 'enableProgressSegments', 'enableRtl', 'endAngle', 'gapWidth', 'height', 'innerRadius', 'isActive', 'isGradient', 'isIndeterminate', 'isStriped', 'labelOnTrack', 'labelStyle', 'locale', 'margin', 'maximum', 'minimum', 'progressColor', 'progressThickness', 'radius', 'rangeColors', 'role', 'secondaryProgress', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
|
|
67
|
+
const outputs = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'valueChanged'];
|
|
68
|
+
const twoWays = [''];
|
|
69
|
+
/**
|
|
70
|
+
* ProgressBar Component
|
|
71
|
+
* ```html
|
|
72
|
+
* <ejsprogressbar></ejsprogressbar>
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
let ProgressBarComponent = class ProgressBarComponent extends ProgressBar {
|
|
76
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
77
|
+
super();
|
|
78
|
+
this.ngEle = ngEle;
|
|
79
|
+
this.srenderer = srenderer;
|
|
80
|
+
this.viewContainerRef = viewContainerRef;
|
|
81
|
+
this.injector = injector;
|
|
82
|
+
this.tags = ['annotations'];
|
|
83
|
+
this.element = this.ngEle.nativeElement;
|
|
84
|
+
this.injectedModules = this.injectedModules || [];
|
|
85
|
+
try {
|
|
86
|
+
let mod = this.injector.get('ProgressBarProgressAnnotation');
|
|
87
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
88
|
+
this.injectedModules.push(mod);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
catch { }
|
|
92
|
+
this.registerEvents(outputs);
|
|
93
|
+
this.addTwoWay.call(this, twoWays);
|
|
94
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
95
|
+
this.context = new ComponentBase();
|
|
96
|
+
}
|
|
97
|
+
ngOnInit() {
|
|
98
|
+
this.context.ngOnInit(this);
|
|
99
|
+
}
|
|
100
|
+
ngAfterViewInit() {
|
|
101
|
+
this.context.ngAfterViewInit(this);
|
|
102
|
+
}
|
|
103
|
+
ngOnDestroy() {
|
|
104
|
+
this.context.ngOnDestroy(this);
|
|
105
|
+
}
|
|
106
|
+
ngAfterContentChecked() {
|
|
107
|
+
this.tagObjects[0].instance = this.childAnnotations;
|
|
108
|
+
this.context.ngAfterContentChecked(this);
|
|
109
|
+
}
|
|
110
|
+
};
|
|
111
|
+
ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
112
|
+
ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ProgressBarComponent, selector: "ejs-progressbar", inputs: { animation: "animation", annotations: "annotations", cornerRadius: "cornerRadius", enablePersistence: "enablePersistence", enablePieProgress: "enablePieProgress", enableProgressSegments: "enableProgressSegments", enableRtl: "enableRtl", endAngle: "endAngle", gapWidth: "gapWidth", height: "height", innerRadius: "innerRadius", isActive: "isActive", isGradient: "isGradient", isIndeterminate: "isIndeterminate", isStriped: "isStriped", labelOnTrack: "labelOnTrack", labelStyle: "labelStyle", locale: "locale", margin: "margin", maximum: "maximum", minimum: "minimum", progressColor: "progressColor", progressThickness: "progressThickness", radius: "radius", rangeColors: "rangeColors", role: "role", secondaryProgress: "secondaryProgress", segmentColor: "segmentColor", segmentCount: "segmentCount", showProgressValue: "showProgressValue", startAngle: "startAngle", theme: "theme", trackColor: "trackColor", trackThickness: "trackThickness", type: "type", value: "value", width: "width" }, outputs: { animationComplete: "animationComplete", load: "load", loaded: "loaded", mouseClick: "mouseClick", mouseDown: "mouseDown", mouseLeave: "mouseLeave", mouseMove: "mouseMove", mouseUp: "mouseUp", progressCompleted: "progressCompleted", textRender: "textRender", valueChanged: "valueChanged" }, queries: [{ propertyName: "childAnnotations", first: true, predicate: ProgressBarAnnotationsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
113
|
+
ProgressBarComponent = __decorate([
|
|
114
|
+
ComponentMixins([ComponentBase])
|
|
115
|
+
], ProgressBarComponent);
|
|
116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
117
|
+
type: Component,
|
|
118
|
+
args: [{
|
|
119
|
+
selector: 'ejs-progressbar',
|
|
120
|
+
inputs: inputs,
|
|
121
|
+
outputs: outputs,
|
|
122
|
+
template: '',
|
|
123
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
124
|
+
queries: {
|
|
125
|
+
childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)
|
|
126
|
+
}
|
|
127
|
+
}]
|
|
128
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* NgModule definition for the ProgressBar component.
|
|
132
|
+
*/
|
|
133
|
+
class ProgressBarModule {
|
|
134
|
+
}
|
|
135
|
+
ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
136
|
+
ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent,
|
|
137
|
+
ProgressBarAnnotationDirective,
|
|
138
|
+
ProgressBarAnnotationsDirective], imports: [CommonModule], exports: [ProgressBarComponent,
|
|
139
|
+
ProgressBarAnnotationDirective,
|
|
140
|
+
ProgressBarAnnotationsDirective] });
|
|
141
|
+
ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, imports: [[CommonModule]] });
|
|
142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, decorators: [{
|
|
143
|
+
type: NgModule,
|
|
144
|
+
args: [{
|
|
145
|
+
imports: [CommonModule],
|
|
146
|
+
declarations: [
|
|
147
|
+
ProgressBarComponent,
|
|
148
|
+
ProgressBarAnnotationDirective,
|
|
149
|
+
ProgressBarAnnotationsDirective
|
|
150
|
+
],
|
|
151
|
+
exports: [
|
|
152
|
+
ProgressBarComponent,
|
|
153
|
+
ProgressBarAnnotationDirective,
|
|
154
|
+
ProgressBarAnnotationsDirective
|
|
155
|
+
]
|
|
156
|
+
}]
|
|
157
|
+
}] });
|
|
158
|
+
|
|
159
|
+
const ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
|
|
160
|
+
/**
|
|
161
|
+
* NgModule definition for the ProgressBar component with providers.
|
|
162
|
+
*/
|
|
163
|
+
class ProgressBarAllModule {
|
|
164
|
+
}
|
|
165
|
+
ProgressBarAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
166
|
+
ProgressBarAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, imports: [CommonModule, ProgressBarModule], exports: [ProgressBarModule] });
|
|
167
|
+
ProgressBarAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, providers: [
|
|
168
|
+
ProgressAnnotationService
|
|
169
|
+
], imports: [[CommonModule, ProgressBarModule], ProgressBarModule] });
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, decorators: [{
|
|
171
|
+
type: NgModule,
|
|
172
|
+
args: [{
|
|
173
|
+
imports: [CommonModule, ProgressBarModule],
|
|
174
|
+
exports: [
|
|
175
|
+
ProgressBarModule
|
|
176
|
+
],
|
|
177
|
+
providers: [
|
|
178
|
+
ProgressAnnotationService
|
|
179
|
+
]
|
|
180
|
+
}]
|
|
181
|
+
}] });
|
|
182
|
+
|
|
183
|
+
// Mapping root file for package generation
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* Generated bundle index. Do not edit.
|
|
187
|
+
*/
|
|
188
|
+
|
|
189
|
+
export { ProgressAnnotationService, ProgressBarAllModule, ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective, ProgressBarComponent, ProgressBarModule };
|
|
190
|
+
//# sourceMappingURL=syncfusion-ej2-angular-progressbar.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"syncfusion-ej2-angular-progressbar.mjs","sources":["../../src/progressbar/annotations.directive.ts","../../src/progressbar/progressbar.component.ts","../../src/progressbar/progressbar.module.ts","../../src/progressbar/progressbar-all.module.ts","../../public_api.ts","../../syncfusion-ej2-angular-progressbar.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 input: string[] = ['annotationAngle', 'annotationRadius', 'content'];\nlet 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 */\n@Directive({\n selector: 'e-progressbar-annotations>e-progressbar-annotation',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class ProgressBarAnnotationDirective extends ComplexBase<ProgressBarAnnotationDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * to move annotation\n * @default 0\n */\n public annotationAngle: any;\n /** \n * to move annotation\n * @default '0%'\n */\n public annotationRadius: any;\n /** \n * Content of the annotation, which accepts the id of the custom element.\n * @default null\n */\n @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * ProgressBarAnnotation Array Directive\n * @private\n */\n@Directive({\n selector: 'ej-progressbar>e-progressbar-annotations',\n queries: {\n children: new ContentChildren(ProgressBarAnnotationDirective)\n },\n})\nexport class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {\n constructor() {\n super('annotations');\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 inputs: string[] = ['animation','annotations','cornerRadius','enablePersistence','enablePieProgress','enableProgressSegments','enableRtl','endAngle','gapWidth','height','innerRadius','isActive','isGradient','isIndeterminate','isStriped','labelOnTrack','labelStyle','locale','margin','maximum','minimum','progressColor','progressThickness','radius','rangeColors','role','secondaryProgress','segmentColor','segmentCount','showProgressValue','startAngle','theme','trackColor','trackThickness','type','value','width'];\nexport const outputs: string[] = ['animationComplete','load','loaded','mouseClick','mouseDown','mouseLeave','mouseMove','mouseUp','progressCompleted','textRender','valueChanged'];\nexport const twoWays: string[] = [''];\n\n/**\n * ProgressBar Component\n * ```html\n * <ejsprogressbar></ejsprogressbar>\n * ```\n */\n@Component({\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@ComponentMixins([ComponentBase])\nexport class ProgressBarComponent extends ProgressBar implements IComponentBase {\n public context : any;\n public 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\tpublic valueChanged: any;\n public childAnnotations: QueryList<ProgressBarAnnotationsDirective>;\n public tags: string[] = ['annotations'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private 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\r\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childAnnotations;\n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\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/**\n * NgModule definition for the ProgressBar component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective\n ]\n})\nexport class ProgressBarModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation} from '@syncfusion/ej2-progressbar'\n\n\nexport const ProgressAnnotationService: ValueProvider = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation};\n\n/**\n * NgModule definition for the ProgressBar component with providers.\n */\n@NgModule({\n imports: [CommonModule, ProgressBarModule],\n exports: [\n ProgressBarModule\n ],\n providers:[\n ProgressAnnotationService\n ]\n})\nexport class ProgressBarAllModule { }","// Mapping root file for package generation\nexport * from './src/index';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["outputs"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-progressbar@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-progressbar@20.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-progressbar@20.1.55",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-eupB8a9KDY4M3Mj2Ptl/vhRYqZP3V9LgiQR3nGCE4vmqc4rDCM0P6ZPWqmQZ9Xpz7BmCQRkte9F4GxL20ierXA==",
|
|
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": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-angular-development/@syncfusion/ej2-angular-progressbar/-/ej2-angular-progressbar-20.1.55.tgz",
|
|
23
|
+
"_shasum": "740538e080782dabd8144d94b8264ffcdb7044ac",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-progressbar@*",
|
|
25
|
-
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/
|
|
25
|
+
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/ivypackages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -33,12 +33,28 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@syncfusion/ej2-angular-base": "~20.2.38",
|
|
35
35
|
"@syncfusion/ej2-base": "~20.2.38",
|
|
36
|
-
"@syncfusion/ej2-progressbar": "20.2.38"
|
|
36
|
+
"@syncfusion/ej2-progressbar": "20.2.38",
|
|
37
|
+
"tslib": "^2.3.0"
|
|
37
38
|
},
|
|
38
39
|
"deprecated": false,
|
|
39
40
|
"description": "Essential JS 2 ProgressBar Component for Angular",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
41
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
42
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
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",
|
|
42
58
|
"homepage": "https://github.com/syncfusion/ej2-angular-ui-components#readme",
|
|
43
59
|
"keywords": [
|
|
44
60
|
"ej2-progressbar",
|
|
@@ -58,9 +74,7 @@
|
|
|
58
74
|
"ej2-angular-progressbar"
|
|
59
75
|
],
|
|
60
76
|
"license": "SEE LICENSE IN license",
|
|
61
|
-
"
|
|
62
|
-
"metadata": "ej2-angular-progressbar.metadata.json",
|
|
63
|
-
"module": "@syncfusion/ej2-angular-progressbar.es5.js",
|
|
77
|
+
"module": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
64
78
|
"name": "@syncfusion/ej2-angular-progressbar",
|
|
65
79
|
"repository": {
|
|
66
80
|
"type": "git",
|
|
@@ -68,6 +82,6 @@
|
|
|
68
82
|
},
|
|
69
83
|
"schematics": "./schematics/collection.json",
|
|
70
84
|
"sideEffects": false,
|
|
71
|
-
"typings": "ej2-angular-progressbar.d.ts",
|
|
72
|
-
"version": "20.2.38
|
|
85
|
+
"typings": "syncfusion-ej2-angular-progressbar.d.ts",
|
|
86
|
+
"version": "20.2.38"
|
|
73
87
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* ProgressBarAnnotations Directive
|
|
5
6
|
* ```html
|
|
@@ -27,6 +28,8 @@ export declare class ProgressBarAnnotationDirective extends ComplexBase<Progress
|
|
|
27
28
|
*/
|
|
28
29
|
content: any;
|
|
29
30
|
constructor(viewContainerRef: ViewContainerRef);
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarAnnotationDirective, never>;
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBarAnnotationDirective, "e-progressbar-annotations>e-progressbar-annotation", never, { "annotationAngle": "annotationAngle"; "annotationRadius": "annotationRadius"; "content": "content"; }, {}, ["content"]>;
|
|
30
33
|
}
|
|
31
34
|
/**
|
|
32
35
|
* ProgressBarAnnotation Array Directive
|
|
@@ -34,4 +37,6 @@ export declare class ProgressBarAnnotationDirective extends ComplexBase<Progress
|
|
|
34
37
|
*/
|
|
35
38
|
export declare class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {
|
|
36
39
|
constructor();
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarAnnotationsDirective, never>;
|
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBarAnnotationsDirective, "ej-progressbar>e-progressbar-annotations", never, {}, {}, ["children"]>;
|
|
37
42
|
}
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
import { ValueProvider } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
import * as i2 from "./progressbar.module";
|
|
2
5
|
export declare const ProgressAnnotationService: ValueProvider;
|
|
3
6
|
/**
|
|
4
7
|
* NgModule definition for the ProgressBar component with providers.
|
|
5
8
|
*/
|
|
6
9
|
export declare class ProgressBarAllModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarAllModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressBarAllModule, never, [typeof i1.CommonModule, typeof i2.ProgressBarModule], [typeof i2.ProgressBarModule]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressBarAllModule>;
|
|
7
13
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@a
|
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { ProgressBar } from '@syncfusion/ej2-progressbar';
|
|
4
4
|
import { ProgressBarAnnotationsDirective } from './annotations.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare const inputs: string[];
|
|
6
7
|
export declare const outputs: string[];
|
|
7
8
|
export declare const twoWays: string[];
|
|
@@ -38,4 +39,6 @@ export declare class ProgressBarComponent extends ProgressBar implements ICompon
|
|
|
38
39
|
ngAfterContentChecked(): void;
|
|
39
40
|
registerEvents: (eventList: string[]) => void;
|
|
40
41
|
addTwoWay: (propList: string[]) => void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "ejs-progressbar", never, { "animation": "animation"; "annotations": "annotations"; "cornerRadius": "cornerRadius"; "enablePersistence": "enablePersistence"; "enablePieProgress": "enablePieProgress"; "enableProgressSegments": "enableProgressSegments"; "enableRtl": "enableRtl"; "endAngle": "endAngle"; "gapWidth": "gapWidth"; "height": "height"; "innerRadius": "innerRadius"; "isActive": "isActive"; "isGradient": "isGradient"; "isIndeterminate": "isIndeterminate"; "isStriped": "isStriped"; "labelOnTrack": "labelOnTrack"; "labelStyle": "labelStyle"; "locale": "locale"; "margin": "margin"; "maximum": "maximum"; "minimum": "minimum"; "progressColor": "progressColor"; "progressThickness": "progressThickness"; "radius": "radius"; "rangeColors": "rangeColors"; "role": "role"; "secondaryProgress": "secondaryProgress"; "segmentColor": "segmentColor"; "segmentCount": "segmentCount"; "showProgressValue": "showProgressValue"; "startAngle": "startAngle"; "theme": "theme"; "trackColor": "trackColor"; "trackThickness": "trackThickness"; "type": "type"; "value": "value"; "width": "width"; }, { "animationComplete": "animationComplete"; "load": "load"; "loaded": "loaded"; "mouseClick": "mouseClick"; "mouseDown": "mouseDown"; "mouseLeave": "mouseLeave"; "mouseMove": "mouseMove"; "mouseUp": "mouseUp"; "progressCompleted": "progressCompleted"; "textRender": "textRender"; "valueChanged": "valueChanged"; }, ["childAnnotations"], never>;
|
|
41
44
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./progressbar.component";
|
|
3
|
+
import * as i2 from "./annotations.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the ProgressBar component.
|
|
3
7
|
*/
|
|
4
8
|
export declare class ProgressBarModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressBarModule, [typeof i1.ProgressBarComponent, typeof i2.ProgressBarAnnotationDirective, typeof i2.ProgressBarAnnotationsDirective], [typeof i3.CommonModule], [typeof i1.ProgressBarComponent, typeof i2.ProgressBarAnnotationDirective, typeof i2.ProgressBarAnnotationsDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressBarModule>;
|
|
5
12
|
}
|
|
@@ -1,261 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = Object.setPrototypeOf ||
|
|
3
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
4
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
5
|
-
return function (d, b) {
|
|
6
|
-
extendStatics(d, b);
|
|
7
|
-
function __() { this.constructor = d; }
|
|
8
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
9
|
-
};
|
|
10
|
-
})();
|
|
11
|
-
import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
|
|
12
|
-
import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
|
|
13
|
-
import { ProgressAnnotation, ProgressBar } from '@syncfusion/ej2-progressbar';
|
|
14
|
-
import { CommonModule } from '@angular/common';
|
|
15
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
16
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
17
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
18
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
19
|
-
else
|
|
20
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
21
|
-
if (d = decorators[i])
|
|
22
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
23
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
24
|
-
};
|
|
25
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
26
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
27
|
-
return Reflect.metadata(k, v);
|
|
28
|
-
};
|
|
29
|
-
var input = ['annotationAngle', 'annotationRadius', 'content'];
|
|
30
|
-
var outputs = [];
|
|
31
|
-
/**
|
|
32
|
-
* ProgressBarAnnotations Directive
|
|
33
|
-
* ```html
|
|
34
|
-
* <e-progressbar-annotations>
|
|
35
|
-
* <e-progressbar-annotation></e-progressbar-annotation>
|
|
36
|
-
* </e-progressbar-annotations>
|
|
37
|
-
* ```
|
|
38
|
-
*/
|
|
39
|
-
var ProgressBarAnnotationDirective = /** @class */ (function (_super) {
|
|
40
|
-
__extends(ProgressBarAnnotationDirective, _super);
|
|
41
|
-
/**
|
|
42
|
-
* @param {?} viewContainerRef
|
|
43
|
-
*/
|
|
44
|
-
function ProgressBarAnnotationDirective(viewContainerRef) {
|
|
45
|
-
var _this = _super.call(this) || this;
|
|
46
|
-
_this.viewContainerRef = viewContainerRef;
|
|
47
|
-
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
48
|
-
_this.registerEvents(outputs);
|
|
49
|
-
_this.directivePropList = input;
|
|
50
|
-
return _this;
|
|
51
|
-
}
|
|
52
|
-
return ProgressBarAnnotationDirective;
|
|
53
|
-
}(ComplexBase));
|
|
54
|
-
ProgressBarAnnotationDirective.decorators = [
|
|
55
|
-
{ type: Directive, args: [{
|
|
56
|
-
selector: 'e-progressbar-annotations>e-progressbar-annotation',
|
|
57
|
-
inputs: input,
|
|
58
|
-
outputs: outputs,
|
|
59
|
-
queries: {}
|
|
60
|
-
},] },
|
|
61
|
-
];
|
|
62
|
-
/**
|
|
63
|
-
* @nocollapse
|
|
64
|
-
*/
|
|
65
|
-
ProgressBarAnnotationDirective.ctorParameters = function () { return [
|
|
66
|
-
{ type: ViewContainerRef, },
|
|
67
|
-
]; };
|
|
68
|
-
ProgressBarAnnotationDirective.propDecorators = {
|
|
69
|
-
'content': [{ type: ContentChild, args: ['content',] },],
|
|
70
|
-
};
|
|
71
|
-
__decorate([
|
|
72
|
-
Template(),
|
|
73
|
-
__metadata("design:type", Object)
|
|
74
|
-
], ProgressBarAnnotationDirective.prototype, "content", void 0);
|
|
75
|
-
/**
|
|
76
|
-
* ProgressBarAnnotation Array Directive
|
|
77
|
-
*/
|
|
78
|
-
var ProgressBarAnnotationsDirective = /** @class */ (function (_super) {
|
|
79
|
-
__extends(ProgressBarAnnotationsDirective, _super);
|
|
80
|
-
function ProgressBarAnnotationsDirective() {
|
|
81
|
-
return _super.call(this, 'annotations') || this;
|
|
82
|
-
}
|
|
83
|
-
return ProgressBarAnnotationsDirective;
|
|
84
|
-
}(ArrayBase));
|
|
85
|
-
ProgressBarAnnotationsDirective.decorators = [
|
|
86
|
-
{ type: Directive, args: [{
|
|
87
|
-
selector: 'ej-progressbar>e-progressbar-annotations',
|
|
88
|
-
queries: {
|
|
89
|
-
children: new ContentChildren(ProgressBarAnnotationDirective)
|
|
90
|
-
},
|
|
91
|
-
},] },
|
|
92
|
-
];
|
|
93
|
-
/**
|
|
94
|
-
* @nocollapse
|
|
95
|
-
*/
|
|
96
|
-
ProgressBarAnnotationsDirective.ctorParameters = function () { return []; };
|
|
97
|
-
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
98
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
99
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
100
|
-
r = Reflect.decorate(decorators, target, key, desc);
|
|
101
|
-
else
|
|
102
|
-
for (var i = decorators.length - 1; i >= 0; i--)
|
|
103
|
-
if (d = decorators[i])
|
|
104
|
-
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
105
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
106
|
-
};
|
|
107
|
-
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
108
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
109
|
-
return Reflect.metadata(k, v);
|
|
110
|
-
};
|
|
111
|
-
var inputs = ['animation', 'annotations', 'cornerRadius', 'enablePersistence', 'enablePieProgress', 'enableProgressSegments', 'enableRtl', 'endAngle', 'gapWidth', 'height', 'innerRadius', 'isActive', 'isGradient', 'isIndeterminate', 'isStriped', 'labelOnTrack', 'labelStyle', 'locale', 'margin', 'maximum', 'minimum', 'progressColor', 'progressThickness', 'radius', 'rangeColors', 'role', 'secondaryProgress', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
|
|
112
|
-
var outputs$1 = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'valueChanged'];
|
|
113
|
-
var twoWays = [''];
|
|
114
|
-
/**
|
|
115
|
-
* ProgressBar Component
|
|
116
|
-
* ```html
|
|
117
|
-
* <ejsprogressbar></ejsprogressbar>
|
|
118
|
-
* ```
|
|
119
|
-
*/
|
|
120
|
-
var ProgressBarComponent = /** @class */ (function (_super) {
|
|
121
|
-
__extends(ProgressBarComponent, _super);
|
|
122
|
-
/**
|
|
123
|
-
* @param {?} ngEle
|
|
124
|
-
* @param {?} srenderer
|
|
125
|
-
* @param {?} viewContainerRef
|
|
126
|
-
* @param {?} injector
|
|
127
|
-
*/
|
|
128
|
-
function ProgressBarComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
129
|
-
var _this = _super.call(this) || this;
|
|
130
|
-
_this.ngEle = ngEle;
|
|
131
|
-
_this.srenderer = srenderer;
|
|
132
|
-
_this.viewContainerRef = viewContainerRef;
|
|
133
|
-
_this.injector = injector;
|
|
134
|
-
_this.tags = ['annotations'];
|
|
135
|
-
_this.element = _this.ngEle.nativeElement;
|
|
136
|
-
_this.injectedModules = _this.injectedModules || [];
|
|
137
|
-
try {
|
|
138
|
-
var mod = _this.injector.get('ProgressBarProgressAnnotation');
|
|
139
|
-
if (_this.injectedModules.indexOf(mod) === -1) {
|
|
140
|
-
_this.injectedModules.push(mod);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
catch (_a) { }
|
|
144
|
-
_this.registerEvents(outputs$1);
|
|
145
|
-
_this.addTwoWay.call(_this, twoWays);
|
|
146
|
-
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
147
|
-
_this.context = new ComponentBase();
|
|
148
|
-
return _this;
|
|
149
|
-
}
|
|
150
|
-
/**
|
|
151
|
-
* @return {?}
|
|
152
|
-
*/
|
|
153
|
-
ProgressBarComponent.prototype.ngOnInit = function () {
|
|
154
|
-
this.context.ngOnInit(this);
|
|
155
|
-
};
|
|
156
|
-
/**
|
|
157
|
-
* @return {?}
|
|
158
|
-
*/
|
|
159
|
-
ProgressBarComponent.prototype.ngAfterViewInit = function () {
|
|
160
|
-
this.context.ngAfterViewInit(this);
|
|
161
|
-
};
|
|
162
|
-
/**
|
|
163
|
-
* @return {?}
|
|
164
|
-
*/
|
|
165
|
-
ProgressBarComponent.prototype.ngOnDestroy = function () {
|
|
166
|
-
this.context.ngOnDestroy(this);
|
|
167
|
-
};
|
|
168
|
-
/**
|
|
169
|
-
* @return {?}
|
|
170
|
-
*/
|
|
171
|
-
ProgressBarComponent.prototype.ngAfterContentChecked = function () {
|
|
172
|
-
this.tagObjects[0].instance = this.childAnnotations;
|
|
173
|
-
this.context.ngAfterContentChecked(this);
|
|
174
|
-
};
|
|
175
|
-
return ProgressBarComponent;
|
|
176
|
-
}(ProgressBar));
|
|
177
|
-
ProgressBarComponent.decorators = [
|
|
178
|
-
{ type: Component, args: [{
|
|
179
|
-
selector: 'ejs-progressbar',
|
|
180
|
-
inputs: inputs,
|
|
181
|
-
outputs: outputs$1,
|
|
182
|
-
template: '',
|
|
183
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
184
|
-
queries: {
|
|
185
|
-
childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)
|
|
186
|
-
}
|
|
187
|
-
},] },
|
|
188
|
-
];
|
|
189
|
-
/**
|
|
190
|
-
* @nocollapse
|
|
191
|
-
*/
|
|
192
|
-
ProgressBarComponent.ctorParameters = function () { return [
|
|
193
|
-
{ type: ElementRef, },
|
|
194
|
-
{ type: Renderer2, },
|
|
195
|
-
{ type: ViewContainerRef, },
|
|
196
|
-
{ type: Injector, },
|
|
197
|
-
]; };
|
|
198
|
-
ProgressBarComponent = __decorate$1([
|
|
199
|
-
ComponentMixins([ComponentBase]),
|
|
200
|
-
__metadata$1("design:paramtypes", [ElementRef,
|
|
201
|
-
Renderer2,
|
|
202
|
-
ViewContainerRef,
|
|
203
|
-
Injector])
|
|
204
|
-
], ProgressBarComponent);
|
|
205
|
-
/**
|
|
206
|
-
* NgModule definition for the ProgressBar component.
|
|
207
|
-
*/
|
|
208
|
-
var ProgressBarModule = /** @class */ (function () {
|
|
209
|
-
function ProgressBarModule() {
|
|
210
|
-
}
|
|
211
|
-
return ProgressBarModule;
|
|
212
|
-
}());
|
|
213
|
-
ProgressBarModule.decorators = [
|
|
214
|
-
{ type: NgModule, args: [{
|
|
215
|
-
imports: [CommonModule],
|
|
216
|
-
declarations: [
|
|
217
|
-
ProgressBarComponent,
|
|
218
|
-
ProgressBarAnnotationDirective,
|
|
219
|
-
ProgressBarAnnotationsDirective
|
|
220
|
-
],
|
|
221
|
-
exports: [
|
|
222
|
-
ProgressBarComponent,
|
|
223
|
-
ProgressBarAnnotationDirective,
|
|
224
|
-
ProgressBarAnnotationsDirective
|
|
225
|
-
]
|
|
226
|
-
},] },
|
|
227
|
-
];
|
|
228
|
-
/**
|
|
229
|
-
* @nocollapse
|
|
230
|
-
*/
|
|
231
|
-
ProgressBarModule.ctorParameters = function () { return []; };
|
|
232
|
-
var ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
|
|
233
|
-
/**
|
|
234
|
-
* NgModule definition for the ProgressBar component with providers.
|
|
235
|
-
*/
|
|
236
|
-
var ProgressBarAllModule = /** @class */ (function () {
|
|
237
|
-
function ProgressBarAllModule() {
|
|
238
|
-
}
|
|
239
|
-
return ProgressBarAllModule;
|
|
240
|
-
}());
|
|
241
|
-
ProgressBarAllModule.decorators = [
|
|
242
|
-
{ type: NgModule, args: [{
|
|
243
|
-
imports: [CommonModule, ProgressBarModule],
|
|
244
|
-
exports: [
|
|
245
|
-
ProgressBarModule
|
|
246
|
-
],
|
|
247
|
-
providers: [
|
|
248
|
-
ProgressAnnotationService
|
|
249
|
-
]
|
|
250
|
-
},] },
|
|
251
|
-
];
|
|
252
|
-
/**
|
|
253
|
-
* @nocollapse
|
|
254
|
-
*/
|
|
255
|
-
ProgressBarAllModule.ctorParameters = function () { return []; };
|
|
256
|
-
/**
|
|
257
|
-
* Generated bundle index. Do not edit.
|
|
258
|
-
*/
|
|
259
|
-
export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective, ProgressBarComponent, ProgressBarModule, ProgressBarAllModule, ProgressAnnotationService, inputs as ɵa, outputs$1 as ɵb };
|
|
260
|
-
export { ProgressBar, Margin, Font, Animation, ProgressAnnotationSettings, RangeColor, ProgressAnnotation, Rect, Size, Pos, RectOption, ColorValue, convertToHexCode, componentToHex, convertHexToColor, colorNameToHex, TextOption, degreeToLocation, getPathArc, stringToNumber, setAttributes, effect, annotationRender, getElement, removeElement, ProgressLocation, ProgressAnimation } from '@syncfusion/ej2-progressbar';
|
|
261
|
-
//# sourceMappingURL=ej2-angular-progressbar.es5.js.map
|