@syncfusion/ej2-angular-progressbar 20.2.38-ngcc → 20.2.43
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 +29 -15
- 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
|
},
|
|
@@ -31,14 +31,30 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~20.2.
|
|
35
|
-
"@syncfusion/ej2-base": "~20.2.
|
|
36
|
-
"@syncfusion/ej2-progressbar": "20.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~20.2.43",
|
|
35
|
+
"@syncfusion/ej2-base": "~20.2.43",
|
|
36
|
+
"@syncfusion/ej2-progressbar": "20.2.43",
|
|
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.
|
|
85
|
+
"typings": "syncfusion-ej2-angular-progressbar.d.ts",
|
|
86
|
+
"version": "20.2.43"
|
|
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
|
}
|