@syncfusion/ej2-angular-progressbar 23.2.5-ngcc → 23.2.5
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 +7 -0
- package/esm2020/src/progressbar/annotations.directive.mjs +62 -0
- package/esm2020/src/progressbar/progressbar-all.module.mjs +32 -0
- package/esm2020/src/progressbar/progressbar.component.mjs +83 -0
- package/esm2020/src/progressbar/progressbar.module.mjs +43 -0
- package/esm2020/src/progressbar/rangecolors.directive.mjs +46 -0
- package/esm2020/syncfusion-ej2-angular-progressbar.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +255 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +255 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/package.json +27 -13
- package/src/progressbar/annotations.directive.d.ts +5 -0
- package/src/progressbar/progressbar-all.module.d.ts +6 -0
- package/src/progressbar/progressbar.component.d.ts +3 -0
- package/src/progressbar/progressbar.module.d.ts +8 -0
- package/src/progressbar/rangecolors.directive.d.ts +5 -0
- package/syncfusion-ej2-angular-progressbar.d.ts +5 -0
- package/@syncfusion/ej2-angular-progressbar.es5.js +0 -331
- package/@syncfusion/ej2-angular-progressbar.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-progressbar.js +0 -299
- package/@syncfusion/ej2-angular-progressbar.js.map +0 -1
- package/CHANGELOG.md +0 -127
- package/dist/ej2-angular-progressbar.umd.js +0 -382
- 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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"syncfusion-ej2-angular-progressbar.mjs","sources":["../../src/progressbar/annotations.directive.ts","../../src/progressbar/rangecolors.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 { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['color', 'end', 'start'];\nlet outputs: string[] = [];\n\n@Directive({\n selector: 'e-rangecolors>e-rangecolor',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class RangeColorDirective extends ComplexBase<RangeColorDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * color\n * @default null\n */\n public color: any;\n /** \n * end\n * @default null\n */\n public end: any;\n /** \n * start\n * @default null\n */\n public start: 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 * RangeColor Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-progressbar>e-rangecolors',\n queries: {\n children: new ContentChildren(RangeColorDirective)\n },\n})\nexport class RangeColorsDirective extends ArrayBase<RangeColorsDirective> {\n constructor() {\n super('rangecolors');\n }\n}","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressBar } from '@syncfusion/ej2-progressbar';\n\nimport { ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { RangeColorsDirective } from './rangecolors.directive';\n\nexport const 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 outputs: string[] = ['animationComplete','load','loaded','mouseClick','mouseDown','mouseLeave','mouseMove','mouseUp','progressCompleted','textRender','tooltipRender','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 childRangeColors: new ContentChild(RangeColorsDirective)\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\ttooltipRender: any;\n\tpublic valueChanged: any;\n public childAnnotations: QueryList<ProgressBarAnnotationsDirective>;\n public childRangeColors: QueryList<RangeColorsDirective>;\n public tags: string[] = ['annotations', 'rangeColors'];\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 try {\n let mod = this.injector.get('ProgressBarProgressTooltip');\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 if (this.childRangeColors) {\n this.tagObjects[1].instance = this.childRangeColors as any;\n }\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 { RangeColorDirective, RangeColorsDirective } from './rangecolors.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 RangeColorDirective,\n RangeColorsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective,\n RangeColorDirective,\n RangeColorsDirective\n ]\n})\nexport class ProgressBarModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { RangeColorDirective, RangeColorsDirective } from './rangecolors.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation, ProgressTooltip} from '@syncfusion/ej2-progressbar'\n\n\nexport const ProgressAnnotationService: ValueProvider = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation};\nexport const ProgressTooltipService: ValueProvider = { provide: 'ProgressBarProgressTooltip', useValue: ProgressTooltip};\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 ProgressTooltipService\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":["input","outputs"],"mappings":"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"}
|
|
@@ -0,0 +1,255 @@
|
|
|
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, ProgressTooltip } from '@syncfusion/ej2-progressbar';
|
|
6
|
+
export * from '@syncfusion/ej2-progressbar';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
|
|
9
|
+
let input$1 = ['annotationAngle', 'annotationRadius', 'content'];
|
|
10
|
+
let outputs$2 = [];
|
|
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$2);
|
|
25
|
+
this.directivePropList = input$1;
|
|
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$1,
|
|
38
|
+
outputs: outputs$2,
|
|
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
|
+
let input = ['color', 'end', 'start'];
|
|
67
|
+
let outputs$1 = [];
|
|
68
|
+
class RangeColorDirective extends ComplexBase {
|
|
69
|
+
constructor(viewContainerRef) {
|
|
70
|
+
super();
|
|
71
|
+
this.viewContainerRef = viewContainerRef;
|
|
72
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
73
|
+
this.registerEvents(outputs$1);
|
|
74
|
+
this.directivePropList = input;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
RangeColorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
78
|
+
RangeColorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeColorDirective, selector: "e-rangecolors>e-rangecolor", inputs: { color: "color", end: "end", start: "start" }, usesInheritance: true, ngImport: i0 });
|
|
79
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorDirective, decorators: [{
|
|
80
|
+
type: Directive,
|
|
81
|
+
args: [{
|
|
82
|
+
selector: 'e-rangecolors>e-rangecolor',
|
|
83
|
+
inputs: input,
|
|
84
|
+
outputs: outputs$1,
|
|
85
|
+
queries: {}
|
|
86
|
+
}]
|
|
87
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
|
|
88
|
+
/**
|
|
89
|
+
* RangeColor Array Directive
|
|
90
|
+
* @private
|
|
91
|
+
*/
|
|
92
|
+
class RangeColorsDirective extends ArrayBase {
|
|
93
|
+
constructor() {
|
|
94
|
+
super('rangecolors');
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
RangeColorsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
98
|
+
RangeColorsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: RangeColorsDirective, selector: "ejs-progressbar>e-rangecolors", queries: [{ propertyName: "children", predicate: RangeColorDirective }], usesInheritance: true, ngImport: i0 });
|
|
99
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RangeColorsDirective, decorators: [{
|
|
100
|
+
type: Directive,
|
|
101
|
+
args: [{
|
|
102
|
+
selector: 'ejs-progressbar>e-rangecolors',
|
|
103
|
+
queries: {
|
|
104
|
+
children: new ContentChildren(RangeColorDirective)
|
|
105
|
+
},
|
|
106
|
+
}]
|
|
107
|
+
}], ctorParameters: function () { return []; } });
|
|
108
|
+
|
|
109
|
+
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', 'secondaryProgressColor', 'secondaryProgressThickness', 'segmentColor', 'segmentCount', 'showProgressValue', 'startAngle', 'theme', 'tooltip', 'trackColor', 'trackThickness', 'type', 'value', 'width'];
|
|
110
|
+
const outputs = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'tooltipRender', 'valueChanged'];
|
|
111
|
+
const twoWays = [''];
|
|
112
|
+
/**
|
|
113
|
+
* ProgressBar Component
|
|
114
|
+
* ```html
|
|
115
|
+
* <ejsprogressbar></ejsprogressbar>
|
|
116
|
+
* ```
|
|
117
|
+
*/
|
|
118
|
+
let ProgressBarComponent = class ProgressBarComponent extends ProgressBar {
|
|
119
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
120
|
+
super();
|
|
121
|
+
this.ngEle = ngEle;
|
|
122
|
+
this.srenderer = srenderer;
|
|
123
|
+
this.viewContainerRef = viewContainerRef;
|
|
124
|
+
this.injector = injector;
|
|
125
|
+
this.tags = ['annotations', 'rangeColors'];
|
|
126
|
+
this.element = this.ngEle.nativeElement;
|
|
127
|
+
this.injectedModules = this.injectedModules || [];
|
|
128
|
+
try {
|
|
129
|
+
let mod = this.injector.get('ProgressBarProgressAnnotation');
|
|
130
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
131
|
+
this.injectedModules.push(mod);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
catch { }
|
|
135
|
+
try {
|
|
136
|
+
let mod = this.injector.get('ProgressBarProgressTooltip');
|
|
137
|
+
if (this.injectedModules.indexOf(mod) === -1) {
|
|
138
|
+
this.injectedModules.push(mod);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
catch { }
|
|
142
|
+
this.registerEvents(outputs);
|
|
143
|
+
this.addTwoWay.call(this, twoWays);
|
|
144
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
|
145
|
+
this.context = new ComponentBase();
|
|
146
|
+
}
|
|
147
|
+
ngOnInit() {
|
|
148
|
+
this.context.ngOnInit(this);
|
|
149
|
+
}
|
|
150
|
+
ngAfterViewInit() {
|
|
151
|
+
this.context.ngAfterViewInit(this);
|
|
152
|
+
}
|
|
153
|
+
ngOnDestroy() {
|
|
154
|
+
this.context.ngOnDestroy(this);
|
|
155
|
+
}
|
|
156
|
+
ngAfterContentChecked() {
|
|
157
|
+
this.tagObjects[0].instance = this.childAnnotations;
|
|
158
|
+
if (this.childRangeColors) {
|
|
159
|
+
this.tagObjects[1].instance = this.childRangeColors;
|
|
160
|
+
}
|
|
161
|
+
this.context.ngAfterContentChecked(this);
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
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 });
|
|
165
|
+
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", secondaryProgressColor: "secondaryProgressColor", secondaryProgressThickness: "secondaryProgressThickness", segmentColor: "segmentColor", segmentCount: "segmentCount", showProgressValue: "showProgressValue", startAngle: "startAngle", theme: "theme", tooltip: "tooltip", 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", tooltipRender: "tooltipRender", valueChanged: "valueChanged" }, queries: [{ propertyName: "childAnnotations", first: true, predicate: ProgressBarAnnotationsDirective, descendants: true }, { propertyName: "childRangeColors", first: true, predicate: RangeColorsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
166
|
+
ProgressBarComponent = __decorate([
|
|
167
|
+
ComponentMixins([ComponentBase])
|
|
168
|
+
], ProgressBarComponent);
|
|
169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
170
|
+
type: Component,
|
|
171
|
+
args: [{
|
|
172
|
+
selector: 'ejs-progressbar',
|
|
173
|
+
inputs: inputs,
|
|
174
|
+
outputs: outputs,
|
|
175
|
+
template: '',
|
|
176
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
177
|
+
queries: {
|
|
178
|
+
childAnnotations: new ContentChild(ProgressBarAnnotationsDirective),
|
|
179
|
+
childRangeColors: new ContentChild(RangeColorsDirective)
|
|
180
|
+
}
|
|
181
|
+
}]
|
|
182
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* NgModule definition for the ProgressBar component.
|
|
186
|
+
*/
|
|
187
|
+
class ProgressBarModule {
|
|
188
|
+
}
|
|
189
|
+
ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
190
|
+
ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent,
|
|
191
|
+
ProgressBarAnnotationDirective,
|
|
192
|
+
ProgressBarAnnotationsDirective,
|
|
193
|
+
RangeColorDirective,
|
|
194
|
+
RangeColorsDirective], imports: [CommonModule], exports: [ProgressBarComponent,
|
|
195
|
+
ProgressBarAnnotationDirective,
|
|
196
|
+
ProgressBarAnnotationsDirective,
|
|
197
|
+
RangeColorDirective,
|
|
198
|
+
RangeColorsDirective] });
|
|
199
|
+
ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, imports: [[CommonModule]] });
|
|
200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, decorators: [{
|
|
201
|
+
type: NgModule,
|
|
202
|
+
args: [{
|
|
203
|
+
imports: [CommonModule],
|
|
204
|
+
declarations: [
|
|
205
|
+
ProgressBarComponent,
|
|
206
|
+
ProgressBarAnnotationDirective,
|
|
207
|
+
ProgressBarAnnotationsDirective,
|
|
208
|
+
RangeColorDirective,
|
|
209
|
+
RangeColorsDirective
|
|
210
|
+
],
|
|
211
|
+
exports: [
|
|
212
|
+
ProgressBarComponent,
|
|
213
|
+
ProgressBarAnnotationDirective,
|
|
214
|
+
ProgressBarAnnotationsDirective,
|
|
215
|
+
RangeColorDirective,
|
|
216
|
+
RangeColorsDirective
|
|
217
|
+
]
|
|
218
|
+
}]
|
|
219
|
+
}] });
|
|
220
|
+
|
|
221
|
+
const ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
|
|
222
|
+
const ProgressTooltipService = { provide: 'ProgressBarProgressTooltip', useValue: ProgressTooltip };
|
|
223
|
+
/**
|
|
224
|
+
* NgModule definition for the ProgressBar component with providers.
|
|
225
|
+
*/
|
|
226
|
+
class ProgressBarAllModule {
|
|
227
|
+
}
|
|
228
|
+
ProgressBarAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
229
|
+
ProgressBarAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, imports: [CommonModule, ProgressBarModule], exports: [ProgressBarModule] });
|
|
230
|
+
ProgressBarAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, providers: [
|
|
231
|
+
ProgressAnnotationService,
|
|
232
|
+
ProgressTooltipService
|
|
233
|
+
], imports: [[CommonModule, ProgressBarModule], ProgressBarModule] });
|
|
234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, decorators: [{
|
|
235
|
+
type: NgModule,
|
|
236
|
+
args: [{
|
|
237
|
+
imports: [CommonModule, ProgressBarModule],
|
|
238
|
+
exports: [
|
|
239
|
+
ProgressBarModule
|
|
240
|
+
],
|
|
241
|
+
providers: [
|
|
242
|
+
ProgressAnnotationService,
|
|
243
|
+
ProgressTooltipService
|
|
244
|
+
]
|
|
245
|
+
}]
|
|
246
|
+
}] });
|
|
247
|
+
|
|
248
|
+
// Mapping root file for package generation
|
|
249
|
+
|
|
250
|
+
/**
|
|
251
|
+
* Generated bundle index. Do not edit.
|
|
252
|
+
*/
|
|
253
|
+
|
|
254
|
+
export { ProgressAnnotationService, ProgressBarAllModule, ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective, ProgressBarComponent, ProgressBarModule, ProgressTooltipService, RangeColorDirective, RangeColorsDirective };
|
|
255
|
+
//# 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/rangecolors.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 { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet input: string[] = ['color', 'end', 'start'];\nlet outputs: string[] = [];\n\n@Directive({\n selector: 'e-rangecolors>e-rangecolor',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class RangeColorDirective extends ComplexBase<RangeColorDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * color\n * @default null\n */\n public color: any;\n /** \n * end\n * @default null\n */\n public end: any;\n /** \n * start\n * @default null\n */\n public start: 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 * RangeColor Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-progressbar>e-rangecolors',\n queries: {\n children: new ContentChildren(RangeColorDirective)\n },\n})\nexport class RangeColorsDirective extends ArrayBase<RangeColorsDirective> {\n constructor() {\n super('rangecolors');\n }\n}","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressBar } from '@syncfusion/ej2-progressbar';\n\nimport { ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { RangeColorsDirective } from './rangecolors.directive';\n\nexport const 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 outputs: string[] = ['animationComplete','load','loaded','mouseClick','mouseDown','mouseLeave','mouseMove','mouseUp','progressCompleted','textRender','tooltipRender','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 childRangeColors: new ContentChild(RangeColorsDirective)\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\ttooltipRender: any;\n\tpublic valueChanged: any;\n public childAnnotations: QueryList<ProgressBarAnnotationsDirective>;\n public childRangeColors: QueryList<RangeColorsDirective>;\n public tags: string[] = ['annotations', 'rangeColors'];\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 try {\n let mod = this.injector.get('ProgressBarProgressTooltip');\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 if (this.childRangeColors) {\n this.tagObjects[1].instance = this.childRangeColors as any;\n }\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 { RangeColorDirective, RangeColorsDirective } from './rangecolors.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 RangeColorDirective,\n RangeColorsDirective\n ],\n exports: [\n ProgressBarComponent,\n ProgressBarAnnotationDirective,\n ProgressBarAnnotationsDirective,\n RangeColorDirective,\n RangeColorsDirective\n ]\n})\nexport class ProgressBarModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';\nimport { RangeColorDirective, RangeColorsDirective } from './rangecolors.directive';\nimport { ProgressBarComponent } from './progressbar.component';\nimport { ProgressBarModule } from './progressbar.module';\nimport {ProgressAnnotation, ProgressTooltip} from '@syncfusion/ej2-progressbar'\n\n\nexport const ProgressAnnotationService: ValueProvider = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation};\nexport const ProgressTooltipService: ValueProvider = { provide: 'ProgressBarProgressTooltip', useValue: ProgressTooltip};\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 ProgressTooltipService\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":["input","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@23.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-progressbar@23.1.38",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-QfTqE5WnKxF9ZxvnEKDnTOsY6gaZOoCMlaoKDjrVOXnTsvlZxSDo/YmZ/zECpNhes80lNPXaq/5Yt9gc6pQZ8w==",
|
|
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-hotfix
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-progressbar/-/ej2-angular-progressbar-23.1.38.tgz",
|
|
23
|
+
"_shasum": "dfb998bb3398368745078fb8782a0dadce5e3080",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-progressbar@*",
|
|
25
|
-
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/
|
|
25
|
+
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/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": "~23.2.5",
|
|
35
35
|
"@syncfusion/ej2-base": "~23.2.4",
|
|
36
|
-
"@syncfusion/ej2-progressbar": "23.2.5"
|
|
36
|
+
"@syncfusion/ej2-progressbar": "23.2.5",
|
|
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://www.syncfusion.com/angular-components",
|
|
43
59
|
"keywords": [
|
|
44
60
|
"angular",
|
|
@@ -48,9 +64,7 @@
|
|
|
48
64
|
"ej2-angular-progressbar"
|
|
49
65
|
],
|
|
50
66
|
"license": "SEE LICENSE IN license",
|
|
51
|
-
"
|
|
52
|
-
"metadata": "ej2-angular-progressbar.metadata.json",
|
|
53
|
-
"module": "@syncfusion/ej2-angular-progressbar.es5.js",
|
|
67
|
+
"module": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
54
68
|
"name": "@syncfusion/ej2-angular-progressbar",
|
|
55
69
|
"repository": {
|
|
56
70
|
"type": "git",
|
|
@@ -58,6 +72,6 @@
|
|
|
58
72
|
},
|
|
59
73
|
"schematics": "./schematics/collection.json",
|
|
60
74
|
"sideEffects": false,
|
|
61
|
-
"typings": "ej2-angular-progressbar.d.ts",
|
|
62
|
-
"version": "23.2.5
|
|
75
|
+
"typings": "syncfusion-ej2-angular-progressbar.d.ts",
|
|
76
|
+
"version": "23.2.5"
|
|
63
77
|
}
|
|
@@ -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,8 +1,14 @@
|
|
|
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
|
export declare const ProgressTooltipService: ValueProvider;
|
|
4
7
|
/**
|
|
5
8
|
* NgModule definition for the ProgressBar component with providers.
|
|
6
9
|
*/
|
|
7
10
|
export declare class ProgressBarAllModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarAllModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressBarAllModule, never, [typeof i1.CommonModule, typeof i2.ProgressBarModule], [typeof i2.ProgressBarModule]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressBarAllModule>;
|
|
8
14
|
}
|
|
@@ -3,6 +3,7 @@ import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
|
3
3
|
import { ProgressBar } from '@syncfusion/ej2-progressbar';
|
|
4
4
|
import { ProgressBarAnnotationsDirective } from './annotations.directive';
|
|
5
5
|
import { RangeColorsDirective } from './rangecolors.directive';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare const inputs: string[];
|
|
7
8
|
export declare const outputs: string[];
|
|
8
9
|
export declare const twoWays: string[];
|
|
@@ -41,4 +42,6 @@ export declare class ProgressBarComponent extends ProgressBar implements ICompon
|
|
|
41
42
|
ngAfterContentChecked(): void;
|
|
42
43
|
registerEvents: (eventList: string[]) => void;
|
|
43
44
|
addTwoWay: (propList: string[]) => void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
46
|
+
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"; "secondaryProgressColor": "secondaryProgressColor"; "secondaryProgressThickness": "secondaryProgressThickness"; "segmentColor": "segmentColor"; "segmentCount": "segmentCount"; "showProgressValue": "showProgressValue"; "startAngle": "startAngle"; "theme": "theme"; "tooltip": "tooltip"; "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"; "tooltipRender": "tooltipRender"; "valueChanged": "valueChanged"; }, ["childAnnotations", "childRangeColors"], never>;
|
|
44
47
|
}
|
|
@@ -1,5 +1,13 @@
|
|
|
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 "./rangecolors.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
1
6
|
/**
|
|
2
7
|
* NgModule definition for the ProgressBar component.
|
|
3
8
|
*/
|
|
4
9
|
export declare class ProgressBarModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressBarModule, [typeof i1.ProgressBarComponent, typeof i2.ProgressBarAnnotationDirective, typeof i2.ProgressBarAnnotationsDirective, typeof i3.RangeColorDirective, typeof i3.RangeColorsDirective], [typeof i4.CommonModule], [typeof i1.ProgressBarComponent, typeof i2.ProgressBarAnnotationDirective, typeof i2.ProgressBarAnnotationsDirective, typeof i3.RangeColorDirective, typeof i3.RangeColorsDirective]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ProgressBarModule>;
|
|
5
13
|
}
|
|
@@ -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
|
export declare class RangeColorDirective extends ComplexBase<RangeColorDirective> {
|
|
4
5
|
private viewContainerRef;
|
|
5
6
|
directivePropList: any;
|
|
@@ -19,6 +20,8 @@ export declare class RangeColorDirective extends ComplexBase<RangeColorDirective
|
|
|
19
20
|
*/
|
|
20
21
|
start: any;
|
|
21
22
|
constructor(viewContainerRef: ViewContainerRef);
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeColorDirective, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeColorDirective, "e-rangecolors>e-rangecolor", never, { "color": "color"; "end": "end"; "start": "start"; }, {}, never>;
|
|
22
25
|
}
|
|
23
26
|
/**
|
|
24
27
|
* RangeColor Array Directive
|
|
@@ -26,4 +29,6 @@ export declare class RangeColorDirective extends ComplexBase<RangeColorDirective
|
|
|
26
29
|
*/
|
|
27
30
|
export declare class RangeColorsDirective extends ArrayBase<RangeColorsDirective> {
|
|
28
31
|
constructor();
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeColorsDirective, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeColorsDirective, "ejs-progressbar>e-rangecolors", never, {}, {}, ["children"]>;
|
|
29
34
|
}
|