@syncfusion/ej2-angular-progressbar 20.4.48 → 21.1.35-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-progressbar.es5.js +270 -0
- package/@syncfusion/ej2-angular-progressbar.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-progressbar.js +242 -0
- package/@syncfusion/ej2-angular-progressbar.js.map +1 -0
- package/CHANGELOG.md +103 -0
- package/dist/ej2-angular-progressbar.umd.js +319 -0
- package/dist/ej2-angular-progressbar.umd.js.map +1 -0
- package/dist/ej2-angular-progressbar.umd.min.js +11 -0
- package/dist/ej2-angular-progressbar.umd.min.js.map +1 -0
- package/ej2-angular-progressbar.d.ts +5 -0
- package/ej2-angular-progressbar.metadata.json +1 -0
- package/package.json +15 -29
- package/postinstall/tagchange.js +18 -0
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +1 -1
- package/src/progressbar/annotations.directive.d.ts +2 -7
- package/src/progressbar/progressbar-all.module.d.ts +1 -6
- package/src/progressbar/progressbar.component.d.ts +1 -3
- package/src/progressbar/progressbar.module.d.ts +0 -7
- package/esm2020/public_api.mjs +0 -3
- package/esm2020/src/index.mjs +0 -6
- package/esm2020/src/progressbar/annotations.directive.mjs +0 -62
- package/esm2020/src/progressbar/progressbar-all.module.mjs +0 -29
- package/esm2020/src/progressbar/progressbar.component.mjs +0 -71
- package/esm2020/src/progressbar/progressbar.module.mjs +0 -34
- package/esm2020/syncfusion-ej2-angular-progressbar.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +0 -190
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +0 -190
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
- package/syncfusion-ej2-angular-progressbar.d.ts +0 -5
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var fs = require("fs");
|
|
2
|
+
var glob = require("glob");
|
|
3
|
+
|
|
4
|
+
var selectors = ['ejs-progressbar'];
|
|
5
|
+
|
|
6
|
+
if (process.env.tagName !== undefined) {
|
|
7
|
+
var newTagPrefix = process.env.tagName.trim();
|
|
8
|
+
var files = glob.sync("./@syncfusion/*");
|
|
9
|
+
for (var i = 0; i < files.length; i++) {
|
|
10
|
+
var sourceFile = fs.readFileSync(files[i], "utf8");
|
|
11
|
+
for (var j = 0; j < selectors.length; j++) {
|
|
12
|
+
selectors[j] = selectors[j].replace('[','').replace(']','');
|
|
13
|
+
var tagRegex = new RegExp(selectors[j], "g");
|
|
14
|
+
sourceFile = sourceFile.replace(tagRegex,selectors[j].replace("ejs", newTagPrefix));
|
|
15
|
+
}
|
|
16
|
+
fs.writeFileSync(files[i], sourceFile, "utf8");
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-progressbar";
|
|
2
|
-
export declare const pkgVer = "^
|
|
2
|
+
export declare const pkgVer = "^18.15.2";
|
|
3
3
|
export declare const moduleName = "ProgressBarModule";
|
|
4
|
-
export declare const themeVer = "~
|
|
4
|
+
export declare const themeVer = "~18.15.2";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-progressbar';
|
|
4
|
-
exports.pkgVer = '^
|
|
4
|
+
exports.pkgVer = '^21.1.35';
|
|
5
5
|
exports.moduleName = 'ProgressBarModule';
|
|
6
|
-
exports.themeVer = '~
|
|
6
|
+
exports.themeVer = '~21.1.35';
|
package/src/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './progressbar/annotations.directive';
|
|
2
2
|
export { ProgressBarComponent } from './progressbar/progressbar.component';
|
|
3
3
|
export { ProgressBarModule } from './progressbar/progressbar.module';
|
|
4
|
-
export { ProgressBarAllModule, ProgressAnnotationService } from './progressbar/progressbar-all.module';
|
|
4
|
+
export { ProgressBarAllModule, ProgressAnnotationService, ProgressTooltipService } from './progressbar/progressbar-all.module';
|
|
5
5
|
export * from '@syncfusion/ej2-progressbar';
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
4
|
* ProgressBarAnnotations Directive
|
|
6
5
|
* ```html
|
|
@@ -13,12 +12,12 @@ export declare class ProgressBarAnnotationDirective extends ComplexBase<Progress
|
|
|
13
12
|
private viewContainerRef;
|
|
14
13
|
directivePropList: any;
|
|
15
14
|
/**
|
|
16
|
-
* to move annotation
|
|
15
|
+
* to move annotation
|
|
17
16
|
* @default 0
|
|
18
17
|
*/
|
|
19
18
|
annotationAngle: any;
|
|
20
19
|
/**
|
|
21
|
-
* to move annotation
|
|
20
|
+
* to move annotation
|
|
22
21
|
* @default '0%'
|
|
23
22
|
*/
|
|
24
23
|
annotationRadius: any;
|
|
@@ -28,8 +27,6 @@ export declare class ProgressBarAnnotationDirective extends ComplexBase<Progress
|
|
|
28
27
|
*/
|
|
29
28
|
content: any;
|
|
30
29
|
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"]>;
|
|
33
30
|
}
|
|
34
31
|
/**
|
|
35
32
|
* ProgressBarAnnotation Array Directive
|
|
@@ -37,6 +34,4 @@ export declare class ProgressBarAnnotationDirective extends ComplexBase<Progress
|
|
|
37
34
|
*/
|
|
38
35
|
export declare class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {
|
|
39
36
|
constructor();
|
|
40
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarAnnotationsDirective, never>;
|
|
41
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBarAnnotationsDirective, "ej-progressbar>e-progressbar-annotations", never, {}, {}, ["children"]>;
|
|
42
37
|
}
|
|
@@ -1,13 +1,8 @@
|
|
|
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";
|
|
5
2
|
export declare const ProgressAnnotationService: ValueProvider;
|
|
3
|
+
export declare const ProgressTooltipService: ValueProvider;
|
|
6
4
|
/**
|
|
7
5
|
* NgModule definition for the ProgressBar component with providers.
|
|
8
6
|
*/
|
|
9
7
|
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>;
|
|
13
8
|
}
|
|
@@ -2,7 +2,6 @@ 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";
|
|
6
5
|
export declare const inputs: string[];
|
|
7
6
|
export declare const outputs: string[];
|
|
8
7
|
export declare const twoWays: string[];
|
|
@@ -29,6 +28,7 @@ export declare class ProgressBarComponent extends ProgressBar implements ICompon
|
|
|
29
28
|
mouseUp: any;
|
|
30
29
|
progressCompleted: any;
|
|
31
30
|
textRender: any;
|
|
31
|
+
tooltipRender: any;
|
|
32
32
|
valueChanged: any;
|
|
33
33
|
childAnnotations: QueryList<ProgressBarAnnotationsDirective>;
|
|
34
34
|
tags: string[];
|
|
@@ -39,6 +39,4 @@ export declare class ProgressBarComponent extends ProgressBar implements ICompon
|
|
|
39
39
|
ngAfterContentChecked(): void;
|
|
40
40
|
registerEvents: (eventList: string[]) => void;
|
|
41
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>;
|
|
44
42
|
}
|
|
@@ -1,12 +1,5 @@
|
|
|
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";
|
|
5
1
|
/**
|
|
6
2
|
* NgModule definition for the ProgressBar component.
|
|
7
3
|
*/
|
|
8
4
|
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>;
|
|
12
5
|
}
|
package/esm2020/public_api.mjs
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
// Mapping root file for package generation
|
|
2
|
-
export * from './src/index';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsMkNBQTJDO0FBQzNDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLy8gTWFwcGluZyByb290IGZpbGUgZm9yIHBhY2thZ2UgZ2VuZXJhdGlvblxuZXhwb3J0ICogZnJvbSAnLi9zcmMvaW5kZXgnOyJdfQ==
|
package/esm2020/src/index.mjs
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './progressbar/annotations.directive';
|
|
2
|
-
export { ProgressBarComponent } from './progressbar/progressbar.component';
|
|
3
|
-
export { ProgressBarModule } from './progressbar/progressbar.module';
|
|
4
|
-
export { ProgressBarAllModule, ProgressAnnotationService } from './progressbar/progressbar-all.module';
|
|
5
|
-
export * from '@syncfusion/ej2-progressbar';
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLDhCQUE4QixFQUFDLCtCQUErQixFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDbkgsT0FBTyxFQUFFLG9CQUFvQixFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDMUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDckUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLHlCQUF5QixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDdkcsY0FBYyw2QkFBNkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7UHJvZ3Jlc3NCYXJBbm5vdGF0aW9uRGlyZWN0aXZlLFByb2dyZXNzQmFyQW5ub3RhdGlvbnNEaXJlY3RpdmV9IGZyb20gJy4vcHJvZ3Jlc3NiYXIvYW5ub3RhdGlvbnMuZGlyZWN0aXZlJztcbmV4cG9ydCB7IFByb2dyZXNzQmFyQ29tcG9uZW50fSBmcm9tICcuL3Byb2dyZXNzYmFyL3Byb2dyZXNzYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgeyBQcm9ncmVzc0Jhck1vZHVsZSB9IGZyb20gJy4vcHJvZ3Jlc3NiYXIvcHJvZ3Jlc3NiYXIubW9kdWxlJztcbmV4cG9ydCB7IFByb2dyZXNzQmFyQWxsTW9kdWxlLCBQcm9ncmVzc0Fubm90YXRpb25TZXJ2aWNlIH0gZnJvbSAnLi9wcm9ncmVzc2Jhci9wcm9ncmVzc2Jhci1hbGwubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1wcm9ncmVzc2Jhcic7Il19
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Directive, ContentChildren, ContentChild } from '@angular/core';
|
|
3
|
-
import { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';
|
|
4
|
-
import { Template } from '@syncfusion/ej2-angular-base';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
let input = ['annotationAngle', 'annotationRadius', 'content'];
|
|
7
|
-
let outputs = [];
|
|
8
|
-
/**
|
|
9
|
-
* ProgressBarAnnotations Directive
|
|
10
|
-
* ```html
|
|
11
|
-
* <e-progressbar-annotations>
|
|
12
|
-
* <e-progressbar-annotation></e-progressbar-annotation>
|
|
13
|
-
* </e-progressbar-annotations>
|
|
14
|
-
* ```
|
|
15
|
-
*/
|
|
16
|
-
export class ProgressBarAnnotationDirective extends ComplexBase {
|
|
17
|
-
constructor(viewContainerRef) {
|
|
18
|
-
super();
|
|
19
|
-
this.viewContainerRef = viewContainerRef;
|
|
20
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
21
|
-
this.registerEvents(outputs);
|
|
22
|
-
this.directivePropList = input;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
ProgressBarAnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
26
|
-
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 });
|
|
27
|
-
__decorate([
|
|
28
|
-
Template()
|
|
29
|
-
], ProgressBarAnnotationDirective.prototype, "content", void 0);
|
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationDirective, decorators: [{
|
|
31
|
-
type: Directive,
|
|
32
|
-
args: [{
|
|
33
|
-
selector: 'e-progressbar-annotations>e-progressbar-annotation',
|
|
34
|
-
inputs: input,
|
|
35
|
-
outputs: outputs,
|
|
36
|
-
queries: {}
|
|
37
|
-
}]
|
|
38
|
-
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
|
39
|
-
type: ContentChild,
|
|
40
|
-
args: ['content']
|
|
41
|
-
}] } });
|
|
42
|
-
/**
|
|
43
|
-
* ProgressBarAnnotation Array Directive
|
|
44
|
-
* @private
|
|
45
|
-
*/
|
|
46
|
-
export class ProgressBarAnnotationsDirective extends ArrayBase {
|
|
47
|
-
constructor() {
|
|
48
|
-
super('annotations');
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
ProgressBarAnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
52
|
-
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 });
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAnnotationsDirective, decorators: [{
|
|
54
|
-
type: Directive,
|
|
55
|
-
args: [{
|
|
56
|
-
selector: 'ej-progressbar>e-progressbar-annotations',
|
|
57
|
-
queries: {
|
|
58
|
-
children: new ContentChildren(ProgressBarAnnotationDirective)
|
|
59
|
-
},
|
|
60
|
-
}]
|
|
61
|
-
}], ctorParameters: function () { return []; } });
|
|
62
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ub3RhdGlvbnMuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3Byb2dyZXNzYmFyL2Fubm90YXRpb25zLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBb0IsZUFBZSxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzRixPQUFPLEVBQUUsV0FBVyxFQUFFLFNBQVMsRUFBRSxRQUFRLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUNoRixPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sOEJBQThCLENBQUM7O0FBR3hELElBQUksS0FBSyxHQUFhLENBQUMsaUJBQWlCLEVBQUUsa0JBQWtCLEVBQUUsU0FBUyxDQUFDLENBQUM7QUFDekUsSUFBSSxPQUFPLEdBQWEsRUFBRSxDQUFDO0FBQzNCOzs7Ozs7O0dBT0c7QUFTSCxNQUFNLE9BQU8sOEJBQStCLFNBQVEsV0FBMkM7SUF1QjNGLFlBQW9CLGdCQUFpQztRQUNqRCxLQUFLLEVBQUUsQ0FBQztRQURRLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBaUI7UUFFakQsUUFBUSxDQUFDLGlCQUFpQixFQUFFLElBQUksRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUN6RCxJQUFJLENBQUMsY0FBYyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQzdCLElBQUksQ0FBQyxpQkFBaUIsR0FBRyxLQUFLLENBQUM7SUFDbkMsQ0FBQzs7MkhBNUJRLDhCQUE4QjsrR0FBOUIsOEJBQThCO0FBcUJ2QztJQURDLFFBQVEsRUFBRTsrREFDUzsyRkFyQlgsOEJBQThCO2tCQVIxQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxvREFBb0Q7b0JBQzlELE1BQU0sRUFBRSxLQUFLO29CQUNiLE9BQU8sRUFBRSxPQUFPO29CQUNoQixPQUFPLEVBQUUsRUFFUjtpQkFDSjt1R0FzQlUsT0FBTztzQkFGYixZQUFZO3VCQUFDLFNBQVM7O0FBWTNCOzs7R0FHRztBQU9ILE1BQU0sT0FBTywrQkFBZ0MsU0FBUSxTQUEwQztJQUMzRjtRQUNJLEtBQUssQ0FBQyxhQUFhLENBQUMsQ0FBQztJQUN6QixDQUFDOzs0SEFIUSwrQkFBK0I7Z0hBQS9CLCtCQUErQix5R0FITiw4QkFBOEI7MkZBR3ZELCtCQUErQjtrQkFOM0MsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsMENBQTBDO29CQUNwRCxPQUFPLEVBQUU7d0JBQ0wsUUFBUSxFQUFFLElBQUksZUFBZSxDQUFDLDhCQUE4QixDQUFDO3FCQUNoRTtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgVmlld0NvbnRhaW5lclJlZiwgQ29udGVudENoaWxkcmVuLCBDb250ZW50Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbXBsZXhCYXNlLCBBcnJheUJhc2UsIHNldFZhbHVlIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWFuZ3VsYXItYmFzZSc7XG5pbXBvcnQgeyBUZW1wbGF0ZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWJhc2UnO1xuXG5cbmxldCBpbnB1dDogc3RyaW5nW10gPSBbJ2Fubm90YXRpb25BbmdsZScsICdhbm5vdGF0aW9uUmFkaXVzJywgJ2NvbnRlbnQnXTtcbmxldCBvdXRwdXRzOiBzdHJpbmdbXSA9IFtdO1xuLyoqXG4gKiBQcm9ncmVzc0JhckFubm90YXRpb25zIERpcmVjdGl2ZVxuICogYGBgaHRtbFxuICogPGUtcHJvZ3Jlc3NiYXItYW5ub3RhdGlvbnM+XG4gKiA8ZS1wcm9ncmVzc2Jhci1hbm5vdGF0aW9uPjwvZS1wcm9ncmVzc2Jhci1hbm5vdGF0aW9uPlxuICogPC9lLXByb2dyZXNzYmFyLWFubm90YXRpb25zPlxuICogYGBgXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnZS1wcm9ncmVzc2Jhci1hbm5vdGF0aW9ucz5lLXByb2dyZXNzYmFyLWFubm90YXRpb24nLFxuICAgIGlucHV0czogaW5wdXQsXG4gICAgb3V0cHV0czogb3V0cHV0cywgICAgXG4gICAgcXVlcmllczoge1xuXG4gICAgfVxufSlcbmV4cG9ydCBjbGFzcyBQcm9ncmVzc0JhckFubm90YXRpb25EaXJlY3RpdmUgZXh0ZW5kcyBDb21wbGV4QmFzZTxQcm9ncmVzc0JhckFubm90YXRpb25EaXJlY3RpdmU+IHtcbiAgICBwdWJsaWMgZGlyZWN0aXZlUHJvcExpc3Q6IGFueTtcblx0XG5cblxuICAgIC8qKiBcbiAgICAgKiB0byBtb3ZlIGFubm90YXRpb24uXG4gICAgICogQGRlZmF1bHQgMFxuICAgICAqL1xuICAgIHB1YmxpYyBhbm5vdGF0aW9uQW5nbGU6IGFueTtcbiAgICAvKiogXG4gICAgICogdG8gbW92ZSBhbm5vdGF0aW9uLlxuICAgICAqIEBkZWZhdWx0ICcwJSdcbiAgICAgKi9cbiAgICBwdWJsaWMgYW5ub3RhdGlvblJhZGl1czogYW55O1xuICAgIC8qKiBcbiAgICAgKiBDb250ZW50IG9mIHRoZSBhbm5vdGF0aW9uLCB3aGljaCBhY2NlcHRzIHRoZSBpZCBvZiB0aGUgY3VzdG9tIGVsZW1lbnQuXG4gICAgICogQGRlZmF1bHQgbnVsbFxuICAgICAqL1xuICAgIEBDb250ZW50Q2hpbGQoJ2NvbnRlbnQnKVxuICAgIEBUZW1wbGF0ZSgpXG4gICAgcHVibGljIGNvbnRlbnQ6IGFueTtcblxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgdmlld0NvbnRhaW5lclJlZjpWaWV3Q29udGFpbmVyUmVmKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgICAgIHNldFZhbHVlKCdjdXJyZW50SW5zdGFuY2UnLCB0aGlzLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xuICAgICAgICB0aGlzLnJlZ2lzdGVyRXZlbnRzKG91dHB1dHMpO1xuICAgICAgICB0aGlzLmRpcmVjdGl2ZVByb3BMaXN0ID0gaW5wdXQ7XG4gICAgfVxufVxuXG4vKipcbiAqIFByb2dyZXNzQmFyQW5ub3RhdGlvbiBBcnJheSBEaXJlY3RpdmVcbiAqIEBwcml2YXRlXG4gKi9cbkBEaXJlY3RpdmUoe1xuICAgIHNlbGVjdG9yOiAnZWotcHJvZ3Jlc3NiYXI+ZS1wcm9ncmVzc2Jhci1hbm5vdGF0aW9ucycsXG4gICAgcXVlcmllczoge1xuICAgICAgICBjaGlsZHJlbjogbmV3IENvbnRlbnRDaGlsZHJlbihQcm9ncmVzc0JhckFubm90YXRpb25EaXJlY3RpdmUpXG4gICAgfSxcbn0pXG5leHBvcnQgY2xhc3MgUHJvZ3Jlc3NCYXJBbm5vdGF0aW9uc0RpcmVjdGl2ZSBleHRlbmRzIEFycmF5QmFzZTxQcm9ncmVzc0JhckFubm90YXRpb25zRGlyZWN0aXZlPiB7XG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKCdhbm5vdGF0aW9ucycpO1xuICAgIH1cbn0iXX0=
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ProgressBarModule } from './progressbar.module';
|
|
4
|
-
import { ProgressAnnotation } from '@syncfusion/ej2-progressbar';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export const ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
|
|
7
|
-
/**
|
|
8
|
-
* NgModule definition for the ProgressBar component with providers.
|
|
9
|
-
*/
|
|
10
|
-
export class ProgressBarAllModule {
|
|
11
|
-
}
|
|
12
|
-
ProgressBarAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
13
|
-
ProgressBarAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, imports: [CommonModule, ProgressBarModule], exports: [ProgressBarModule] });
|
|
14
|
-
ProgressBarAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, providers: [
|
|
15
|
-
ProgressAnnotationService
|
|
16
|
-
], imports: [[CommonModule, ProgressBarModule], ProgressBarModule] });
|
|
17
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, decorators: [{
|
|
18
|
-
type: NgModule,
|
|
19
|
-
args: [{
|
|
20
|
-
imports: [CommonModule, ProgressBarModule],
|
|
21
|
-
exports: [
|
|
22
|
-
ProgressBarModule
|
|
23
|
-
],
|
|
24
|
-
providers: [
|
|
25
|
-
ProgressAnnotationService
|
|
26
|
-
]
|
|
27
|
-
}]
|
|
28
|
-
}] });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3NiYXItYWxsLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9wcm9ncmVzc2Jhci9wcm9ncmVzc2Jhci1hbGwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ3hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUcvQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN6RCxPQUFPLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSw2QkFBNkIsQ0FBQTs7QUFHOUQsTUFBTSxDQUFDLE1BQU0seUJBQXlCLEdBQWtCLEVBQUUsT0FBTyxFQUFFLCtCQUErQixFQUFFLFFBQVEsRUFBRSxrQkFBa0IsRUFBQyxDQUFDO0FBRWxJOztHQUVHO0FBVUgsTUFBTSxPQUFPLG9CQUFvQjs7aUhBQXBCLG9CQUFvQjtrSEFBcEIsb0JBQW9CLFlBUm5CLFlBQVksRUFBRSxpQkFBaUIsYUFFckMsaUJBQWlCO2tIQU1aLG9CQUFvQixhQUpuQjtRQUNOLHlCQUF5QjtLQUM1QixZQU5RLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDLEVBRXRDLGlCQUFpQjsyRkFNWixvQkFBb0I7a0JBVGhDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDO29CQUMxQyxPQUFPLEVBQUU7d0JBQ0wsaUJBQWlCO3FCQUNwQjtvQkFDRCxTQUFTLEVBQUM7d0JBQ04seUJBQXlCO3FCQUM1QjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlLCBWYWx1ZVByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJBbm5vdGF0aW9uRGlyZWN0aXZlLCBQcm9ncmVzc0JhckFubm90YXRpb25zRGlyZWN0aXZlIH0gZnJvbSAnLi9hbm5vdGF0aW9ucy5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJDb21wb25lbnQgfSBmcm9tICcuL3Byb2dyZXNzYmFyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBQcm9ncmVzc0Jhck1vZHVsZSB9IGZyb20gJy4vcHJvZ3Jlc3NiYXIubW9kdWxlJztcbmltcG9ydCB7UHJvZ3Jlc3NBbm5vdGF0aW9ufSBmcm9tICdAc3luY2Z1c2lvbi9lajItcHJvZ3Jlc3NiYXInXG5cblxuZXhwb3J0IGNvbnN0IFByb2dyZXNzQW5ub3RhdGlvblNlcnZpY2U6IFZhbHVlUHJvdmlkZXIgPSB7IHByb3ZpZGU6ICdQcm9ncmVzc0JhclByb2dyZXNzQW5ub3RhdGlvbicsIHVzZVZhbHVlOiBQcm9ncmVzc0Fubm90YXRpb259O1xuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBQcm9ncmVzc0JhciBjb21wb25lbnQgd2l0aCBwcm92aWRlcnMuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgUHJvZ3Jlc3NCYXJNb2R1bGVdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgUHJvZ3Jlc3NCYXJNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczpbXG4gICAgICAgIFByb2dyZXNzQW5ub3RhdGlvblNlcnZpY2VcbiAgICBdXG59KVxuZXhwb3J0IGNsYXNzIFByb2dyZXNzQmFyQWxsTW9kdWxlIHsgfSJdfQ==
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
import { __decorate } from "tslib";
|
|
2
|
-
import { Component, ChangeDetectionStrategy, ContentChild } from '@angular/core';
|
|
3
|
-
import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
|
|
4
|
-
import { ProgressBar } from '@syncfusion/ej2-progressbar';
|
|
5
|
-
import { ProgressBarAnnotationsDirective } from './annotations.directive';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export 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'];
|
|
8
|
-
export const outputs = ['animationComplete', 'load', 'loaded', 'mouseClick', 'mouseDown', 'mouseLeave', 'mouseMove', 'mouseUp', 'progressCompleted', 'textRender', 'valueChanged'];
|
|
9
|
-
export const twoWays = [''];
|
|
10
|
-
/**
|
|
11
|
-
* ProgressBar Component
|
|
12
|
-
* ```html
|
|
13
|
-
* <ejsprogressbar></ejsprogressbar>
|
|
14
|
-
* ```
|
|
15
|
-
*/
|
|
16
|
-
let ProgressBarComponent = class ProgressBarComponent extends ProgressBar {
|
|
17
|
-
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
|
18
|
-
super();
|
|
19
|
-
this.ngEle = ngEle;
|
|
20
|
-
this.srenderer = srenderer;
|
|
21
|
-
this.viewContainerRef = viewContainerRef;
|
|
22
|
-
this.injector = injector;
|
|
23
|
-
this.tags = ['annotations'];
|
|
24
|
-
this.element = this.ngEle.nativeElement;
|
|
25
|
-
this.injectedModules = this.injectedModules || [];
|
|
26
|
-
try {
|
|
27
|
-
let mod = this.injector.get('ProgressBarProgressAnnotation');
|
|
28
|
-
if (this.injectedModules.indexOf(mod) === -1) {
|
|
29
|
-
this.injectedModules.push(mod);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
catch { }
|
|
33
|
-
this.registerEvents(outputs);
|
|
34
|
-
this.addTwoWay.call(this, twoWays);
|
|
35
|
-
setValue('currentInstance', this, this.viewContainerRef);
|
|
36
|
-
this.context = new ComponentBase();
|
|
37
|
-
}
|
|
38
|
-
ngOnInit() {
|
|
39
|
-
this.context.ngOnInit(this);
|
|
40
|
-
}
|
|
41
|
-
ngAfterViewInit() {
|
|
42
|
-
this.context.ngAfterViewInit(this);
|
|
43
|
-
}
|
|
44
|
-
ngOnDestroy() {
|
|
45
|
-
this.context.ngOnDestroy(this);
|
|
46
|
-
}
|
|
47
|
-
ngAfterContentChecked() {
|
|
48
|
-
this.tagObjects[0].instance = this.childAnnotations;
|
|
49
|
-
this.context.ngAfterContentChecked(this);
|
|
50
|
-
}
|
|
51
|
-
};
|
|
52
|
-
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 });
|
|
53
|
-
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 });
|
|
54
|
-
ProgressBarComponent = __decorate([
|
|
55
|
-
ComponentMixins([ComponentBase])
|
|
56
|
-
], ProgressBarComponent);
|
|
57
|
-
export { ProgressBarComponent };
|
|
58
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
59
|
-
type: Component,
|
|
60
|
-
args: [{
|
|
61
|
-
selector: 'ejs-progressbar',
|
|
62
|
-
inputs: inputs,
|
|
63
|
-
outputs: outputs,
|
|
64
|
-
template: '',
|
|
65
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
66
|
-
queries: {
|
|
67
|
-
childAnnotations: new ContentChild(ProgressBarAnnotationsDirective)
|
|
68
|
-
}
|
|
69
|
-
}]
|
|
70
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
|
71
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3NiYXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3Byb2dyZXNzYmFyL3Byb2dyZXNzYmFyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFFLFNBQVMsRUFBZ0MsdUJBQXVCLEVBQWlELFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5SixPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzdJLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUUxRCxPQUFPLEVBQUUsK0JBQStCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQzs7QUFFMUUsTUFBTSxDQUFDLE1BQU0sTUFBTSxHQUFhLENBQUMsV0FBVyxFQUFDLGFBQWEsRUFBQyxjQUFjLEVBQUMsbUJBQW1CLEVBQUMsbUJBQW1CLEVBQUMsd0JBQXdCLEVBQUMsV0FBVyxFQUFDLFVBQVUsRUFBQyxVQUFVLEVBQUMsUUFBUSxFQUFDLGFBQWEsRUFBQyxVQUFVLEVBQUMsWUFBWSxFQUFDLGlCQUFpQixFQUFDLFdBQVcsRUFBQyxjQUFjLEVBQUMsWUFBWSxFQUFDLFFBQVEsRUFBQyxRQUFRLEVBQUMsU0FBUyxFQUFDLFNBQVMsRUFBQyxlQUFlLEVBQUMsbUJBQW1CLEVBQUMsUUFBUSxFQUFDLGFBQWEsRUFBQyxNQUFNLEVBQUMsbUJBQW1CLEVBQUMsY0FBYyxFQUFDLGNBQWMsRUFBQyxtQkFBbUIsRUFBQyxZQUFZLEVBQUMsT0FBTyxFQUFDLFlBQVksRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLEVBQUMsT0FBTyxFQUFDLE9BQU8sQ0FBQyxDQUFDO0FBQy9nQixNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxtQkFBbUIsRUFBQyxNQUFNLEVBQUMsUUFBUSxFQUFDLFlBQVksRUFBQyxXQUFXLEVBQUMsWUFBWSxFQUFDLFdBQVcsRUFBQyxTQUFTLEVBQUMsbUJBQW1CLEVBQUMsWUFBWSxFQUFDLGNBQWMsQ0FBQyxDQUFDO0FBQ25MLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBYSxDQUFDLEVBQUUsQ0FBQyxDQUFDO0FBRXRDOzs7OztHQUtHO0lBWVUsb0JBQW9CLFNBQXBCLG9CQUFxQixTQUFRLFdBQVc7SUFpQmpELFlBQW9CLEtBQWlCLEVBQVUsU0FBb0IsRUFBVSxnQkFBaUMsRUFBVSxRQUFrQjtRQUN0SSxLQUFLLEVBQUUsQ0FBQztRQURRLFVBQUssR0FBTCxLQUFLLENBQVk7UUFBVSxjQUFTLEdBQVQsU0FBUyxDQUFXO1FBQVUscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFpQjtRQUFVLGFBQVEsR0FBUixRQUFRLENBQVU7UUFGbkksU0FBSSxHQUFhLENBQUMsYUFBYSxDQUFDLENBQUM7UUFJcEMsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQztRQUN4QyxJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksQ0FBQyxlQUFlLElBQUksRUFBRSxDQUFDO1FBQ2xELElBQUk7WUFDSSxJQUFJLEdBQUcsR0FBRyxJQUFJLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQywrQkFBK0IsQ0FBQyxDQUFDO1lBQzdELElBQUcsSUFBSSxDQUFDLGVBQWUsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxDQUFDLEVBQUU7Z0JBQ3pDLElBQUksQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFBO2FBQ2pDO1NBQ0o7UUFBQyxNQUFNLEdBQUc7UUFFZixJQUFJLENBQUMsY0FBYyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQzdCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksRUFBRSxPQUFPLENBQUMsQ0FBQztRQUNuQyxRQUFRLENBQUMsaUJBQWlCLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBQ3pELElBQUksQ0FBQyxPQUFPLEdBQUksSUFBSSxhQUFhLEVBQUUsQ0FBQztJQUN4QyxDQUFDO0lBRU0sUUFBUTtRQUNYLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ2hDLENBQUM7SUFFTSxlQUFlO1FBQ2xCLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFFTSxXQUFXO1FBQ2QsSUFBSSxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVNLHFCQUFxQjtRQUN4QixJQUFJLENBQUMsVUFBVSxDQUFDLENBQUMsQ0FBQyxDQUFDLFFBQVEsR0FBRyxJQUFJLENBQUMsZ0JBQWdCLENBQUM7UUFDcEQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM3QyxDQUFDO0NBSUosQ0FBQTtpSEFyRFksb0JBQW9CO3FHQUFwQixvQkFBb0IsdzNDQUpVLCtCQUErQix1RUFINUQsRUFBRTtBQU9ILG9CQUFvQjtJQURoQyxlQUFlLENBQUMsQ0FBQyxhQUFhLENBQUMsQ0FBQztHQUNwQixvQkFBb0IsQ0FxRGhDO1NBckRZLG9CQUFvQjsyRkFBcEIsb0JBQW9CO2tCQVhoQyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLE1BQU0sRUFBRSxNQUFNO29CQUNkLE9BQU8sRUFBRSxPQUFPO29CQUNoQixRQUFRLEVBQUUsRUFBRTtvQkFDWixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFO3dCQUNMLGdCQUFnQixFQUFFLElBQUksWUFBWSxDQUFDLCtCQUErQixDQUFDO3FCQUN0RTtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgVmlld0NvbnRhaW5lclJlZiwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIFF1ZXJ5TGlzdCwgUmVuZGVyZXIyLCBJbmplY3RvciwgVmFsdWVQcm92aWRlciwgQ29udGVudENoaWxkIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21wb25lbnRCYXNlLCBJQ29tcG9uZW50QmFzZSwgYXBwbHlNaXhpbnMsIENvbXBvbmVudE1peGlucywgUHJvcGVydHlDb2xsZWN0aW9uSW5mbywgc2V0VmFsdWUgfSBmcm9tICdAc3luY2Z1c2lvbi9lajItYW5ndWxhci1iYXNlJztcbmltcG9ydCB7IFByb2dyZXNzQmFyIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLXByb2dyZXNzYmFyJztcblxuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJBbm5vdGF0aW9uc0RpcmVjdGl2ZSB9IGZyb20gJy4vYW5ub3RhdGlvbnMuZGlyZWN0aXZlJztcblxuZXhwb3J0IGNvbnN0IGlucHV0czogc3RyaW5nW10gPSBbJ2FuaW1hdGlvbicsJ2Fubm90YXRpb25zJywnY29ybmVyUmFkaXVzJywnZW5hYmxlUGVyc2lzdGVuY2UnLCdlbmFibGVQaWVQcm9ncmVzcycsJ2VuYWJsZVByb2dyZXNzU2VnbWVudHMnLCdlbmFibGVSdGwnLCdlbmRBbmdsZScsJ2dhcFdpZHRoJywnaGVpZ2h0JywnaW5uZXJSYWRpdXMnLCdpc0FjdGl2ZScsJ2lzR3JhZGllbnQnLCdpc0luZGV0ZXJtaW5hdGUnLCdpc1N0cmlwZWQnLCdsYWJlbE9uVHJhY2snLCdsYWJlbFN0eWxlJywnbG9jYWxlJywnbWFyZ2luJywnbWF4aW11bScsJ21pbmltdW0nLCdwcm9ncmVzc0NvbG9yJywncHJvZ3Jlc3NUaGlja25lc3MnLCdyYWRpdXMnLCdyYW5nZUNvbG9ycycsJ3JvbGUnLCdzZWNvbmRhcnlQcm9ncmVzcycsJ3NlZ21lbnRDb2xvcicsJ3NlZ21lbnRDb3VudCcsJ3Nob3dQcm9ncmVzc1ZhbHVlJywnc3RhcnRBbmdsZScsJ3RoZW1lJywndHJhY2tDb2xvcicsJ3RyYWNrVGhpY2tuZXNzJywndHlwZScsJ3ZhbHVlJywnd2lkdGgnXTtcbmV4cG9ydCBjb25zdCBvdXRwdXRzOiBzdHJpbmdbXSA9IFsnYW5pbWF0aW9uQ29tcGxldGUnLCdsb2FkJywnbG9hZGVkJywnbW91c2VDbGljaycsJ21vdXNlRG93bicsJ21vdXNlTGVhdmUnLCdtb3VzZU1vdmUnLCdtb3VzZVVwJywncHJvZ3Jlc3NDb21wbGV0ZWQnLCd0ZXh0UmVuZGVyJywndmFsdWVDaGFuZ2VkJ107XG5leHBvcnQgY29uc3QgdHdvV2F5czogc3RyaW5nW10gPSBbJyddO1xuXG4vKipcbiAqIFByb2dyZXNzQmFyIENvbXBvbmVudFxuICogYGBgaHRtbFxuICogPGVqc3Byb2dyZXNzYmFyPjwvZWpzcHJvZ3Jlc3NiYXI+XG4gKiBgYGBcbiAqL1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdlanMtcHJvZ3Jlc3NiYXInLFxuICAgIGlucHV0czogaW5wdXRzLFxuICAgIG91dHB1dHM6IG91dHB1dHMsXG4gICAgdGVtcGxhdGU6ICcnLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICAgIHF1ZXJpZXM6IHtcbiAgICAgICAgY2hpbGRBbm5vdGF0aW9uczogbmV3IENvbnRlbnRDaGlsZChQcm9ncmVzc0JhckFubm90YXRpb25zRGlyZWN0aXZlKVxuICAgIH1cbn0pXG5AQ29tcG9uZW50TWl4aW5zKFtDb21wb25lbnRCYXNlXSlcbmV4cG9ydCBjbGFzcyBQcm9ncmVzc0JhckNvbXBvbmVudCBleHRlbmRzIFByb2dyZXNzQmFyIGltcGxlbWVudHMgSUNvbXBvbmVudEJhc2Uge1xuICAgIHB1YmxpYyBjb250ZXh0IDogYW55O1xuICAgIHB1YmxpYyB0YWdPYmplY3RzOiBhbnk7XG5cdGFuaW1hdGlvbkNvbXBsZXRlOiBhbnk7XG5cdGxvYWQ6IGFueTtcblx0bG9hZGVkOiBhbnk7XG5cdG1vdXNlQ2xpY2s6IGFueTtcblx0bW91c2VEb3duOiBhbnk7XG5cdG1vdXNlTGVhdmU6IGFueTtcblx0bW91c2VNb3ZlOiBhbnk7XG5cdG1vdXNlVXA6IGFueTtcblx0cHJvZ3Jlc3NDb21wbGV0ZWQ6IGFueTtcblx0dGV4dFJlbmRlcjogYW55O1xuXHRwdWJsaWMgdmFsdWVDaGFuZ2VkOiBhbnk7XG4gICAgcHVibGljIGNoaWxkQW5ub3RhdGlvbnM6IFF1ZXJ5TGlzdDxQcm9ncmVzc0JhckFubm90YXRpb25zRGlyZWN0aXZlPjtcbiAgICBwdWJsaWMgdGFnczogc3RyaW5nW10gPSBbJ2Fubm90YXRpb25zJ107XG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIG5nRWxlOiBFbGVtZW50UmVmLCBwcml2YXRlIHNyZW5kZXJlcjogUmVuZGVyZXIyLCBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6Vmlld0NvbnRhaW5lclJlZiwgcHJpdmF0ZSBpbmplY3RvcjogSW5qZWN0b3IpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5lbGVtZW50ID0gdGhpcy5uZ0VsZS5uYXRpdmVFbGVtZW50O1xuICAgICAgICB0aGlzLmluamVjdGVkTW9kdWxlcyA9IHRoaXMuaW5qZWN0ZWRNb2R1bGVzIHx8IFtdO1xuICAgICAgICB0cnkge1xuICAgICAgICAgICAgICAgIGxldCBtb2QgPSB0aGlzLmluamVjdG9yLmdldCgnUHJvZ3Jlc3NCYXJQcm9ncmVzc0Fubm90YXRpb24nKTtcbiAgICAgICAgICAgICAgICBpZih0aGlzLmluamVjdGVkTW9kdWxlcy5pbmRleE9mKG1vZCkgPT09IC0xKSB7XG4gICAgICAgICAgICAgICAgICAgIHRoaXMuaW5qZWN0ZWRNb2R1bGVzLnB1c2gobW9kKVxuICAgICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH0gY2F0Y2ggeyB9XG5cclxuICAgICAgICB0aGlzLnJlZ2lzdGVyRXZlbnRzKG91dHB1dHMpO1xuICAgICAgICB0aGlzLmFkZFR3b1dheS5jYWxsKHRoaXMsIHR3b1dheXMpO1xuICAgICAgICBzZXRWYWx1ZSgnY3VycmVudEluc3RhbmNlJywgdGhpcywgdGhpcy52aWV3Q29udGFpbmVyUmVmKTtcbiAgICAgICAgdGhpcy5jb250ZXh0ICA9IG5ldyBDb21wb25lbnRCYXNlKCk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nT25Jbml0KCkge1xuICAgICAgICB0aGlzLmNvbnRleHQubmdPbkluaXQodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jb250ZXh0Lm5nQWZ0ZXJWaWV3SW5pdCh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgICAgIHRoaXMuY29udGV4dC5uZ09uRGVzdHJveSh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdBZnRlckNvbnRlbnRDaGVja2VkKCk6IHZvaWQge1xuICAgICAgICB0aGlzLnRhZ09iamVjdHNbMF0uaW5zdGFuY2UgPSB0aGlzLmNoaWxkQW5ub3RhdGlvbnM7XG4gICAgICAgIHRoaXMuY29udGV4dC5uZ0FmdGVyQ29udGVudENoZWNrZWQodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIHJlZ2lzdGVyRXZlbnRzOiAoZXZlbnRMaXN0OiBzdHJpbmdbXSkgPT4gdm9pZDtcbiAgICBwdWJsaWMgYWRkVHdvV2F5OiAocHJvcExpc3Q6IHN0cmluZ1tdKSA9PiB2b2lkO1xufVxuXG4iXX0=
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './annotations.directive';
|
|
4
|
-
import { ProgressBarComponent } from './progressbar.component';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
/**
|
|
7
|
-
* NgModule definition for the ProgressBar component.
|
|
8
|
-
*/
|
|
9
|
-
export class ProgressBarModule {
|
|
10
|
-
}
|
|
11
|
-
ProgressBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
12
|
-
ProgressBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, declarations: [ProgressBarComponent,
|
|
13
|
-
ProgressBarAnnotationDirective,
|
|
14
|
-
ProgressBarAnnotationsDirective], imports: [CommonModule], exports: [ProgressBarComponent,
|
|
15
|
-
ProgressBarAnnotationDirective,
|
|
16
|
-
ProgressBarAnnotationsDirective] });
|
|
17
|
-
ProgressBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, imports: [[CommonModule]] });
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarModule, decorators: [{
|
|
19
|
-
type: NgModule,
|
|
20
|
-
args: [{
|
|
21
|
-
imports: [CommonModule],
|
|
22
|
-
declarations: [
|
|
23
|
-
ProgressBarComponent,
|
|
24
|
-
ProgressBarAnnotationDirective,
|
|
25
|
-
ProgressBarAnnotationsDirective
|
|
26
|
-
],
|
|
27
|
-
exports: [
|
|
28
|
-
ProgressBarComponent,
|
|
29
|
-
ProgressBarAnnotationDirective,
|
|
30
|
-
ProgressBarAnnotationsDirective
|
|
31
|
-
]
|
|
32
|
-
}]
|
|
33
|
-
}] });
|
|
34
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3NiYXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3Byb2dyZXNzYmFyL3Byb2dyZXNzYmFyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsOEJBQThCLEVBQUUsK0JBQStCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUMxRyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQzs7QUFFL0Q7O0dBRUc7QUFjSCxNQUFNLE9BQU8saUJBQWlCOzs4R0FBakIsaUJBQWlCOytHQUFqQixpQkFBaUIsaUJBVnRCLG9CQUFvQjtRQUNwQiw4QkFBOEI7UUFDOUIsK0JBQStCLGFBSnpCLFlBQVksYUFPbEIsb0JBQW9CO1FBQ3BCLDhCQUE4QjtRQUM5QiwrQkFBK0I7K0dBRzFCLGlCQUFpQixZQVpqQixDQUFDLFlBQVksQ0FBQzsyRkFZZCxpQkFBaUI7a0JBYjdCLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUU7d0JBQ1Ysb0JBQW9CO3dCQUNwQiw4QkFBOEI7d0JBQzlCLCtCQUErQjtxQkFDbEM7b0JBQ0QsT0FBTyxFQUFFO3dCQUNMLG9CQUFvQjt3QkFDcEIsOEJBQThCO3dCQUM5QiwrQkFBK0I7cUJBQ2xDO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBQcm9ncmVzc0JhckFubm90YXRpb25EaXJlY3RpdmUsIFByb2dyZXNzQmFyQW5ub3RhdGlvbnNEaXJlY3RpdmUgfSBmcm9tICcuL2Fubm90YXRpb25zLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBQcm9ncmVzc0JhckNvbXBvbmVudCB9IGZyb20gJy4vcHJvZ3Jlc3NiYXIuY29tcG9uZW50JztcblxuLyoqXG4gKiBOZ01vZHVsZSBkZWZpbml0aW9uIGZvciB0aGUgUHJvZ3Jlc3NCYXIgY29tcG9uZW50LlxuICovXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGVdLFxuICAgIGRlY2xhcmF0aW9uczogW1xuICAgICAgICBQcm9ncmVzc0JhckNvbXBvbmVudCxcbiAgICAgICAgUHJvZ3Jlc3NCYXJBbm5vdGF0aW9uRGlyZWN0aXZlLFxuICAgICAgICBQcm9ncmVzc0JhckFubm90YXRpb25zRGlyZWN0aXZlXG4gICAgXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFByb2dyZXNzQmFyQ29tcG9uZW50LFxuICAgICAgICBQcm9ncmVzc0JhckFubm90YXRpb25EaXJlY3RpdmUsXG4gICAgICAgIFByb2dyZXNzQmFyQW5ub3RhdGlvbnNEaXJlY3RpdmVcbiAgICBdXG59KVxuZXhwb3J0IGNsYXNzIFByb2dyZXNzQmFyTW9kdWxlIHsgfSJdfQ==
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public_api';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3luY2Z1c2lvbi1lajItYW5ndWxhci1wcm9ncmVzc2Jhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3N5bmNmdXNpb24tZWoyLWFuZ3VsYXItcHJvZ3Jlc3NiYXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWNfYXBpJztcbiJdfQ==
|
|
@@ -1,190 +0,0 @@
|
|
|
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 (_a) { }
|
|
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
|