@syncfusion/ej2-angular-progressbar 30.1.37-ngcc → 30.1.37
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/CHANGELOG.md +170 -0
- package/esm2020/public_api.mjs +2 -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 +253 -0
- package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +253 -0
- package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +1 -0
- package/package.json +59 -15
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +6 -6
- package/src/progressbar/annotations.directive.d.ts +42 -37
- package/src/progressbar/progressbar-all.module.d.ts +14 -8
- package/src/progressbar/progressbar.component.d.ts +47 -44
- package/src/progressbar/progressbar.module.d.ts +13 -5
- package/src/progressbar/rangecolors.directive.d.ts +34 -29
- 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/LICENSE +0 -10
- 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/package.json
CHANGED
|
@@ -1,16 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
2
|
+
"_from": "@syncfusion/ej2-angular-progressbar@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-progressbar@28.2.0",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-Rf9pMWha02WTArmiuzLmBgZ9QyfYsyGg3d06trz/VWjmujwz13MENkJkUp+7GgI83RE7H6LJKzGBwVXGuuK5Qw==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-angular-progressbar",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-angular-progressbar@*",
|
|
12
|
+
"name": "@syncfusion/ej2-angular-progressbar",
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-angular-progressbar",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/"
|
|
21
|
+
],
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-development/@syncfusion/ej2-angular-progressbar/-/ej2-angular-progressbar-28.2.0.tgz",
|
|
23
|
+
"_shasum": "90a0336033ac9906479a95a9bc4bed7bfd07c276",
|
|
24
|
+
"_spec": "@syncfusion/ej2-angular-progressbar@*",
|
|
25
|
+
"_where": "D:\\SF3992\\WFH\\Nexus\\ej2-nexus-branch-switching-dev\\release",
|
|
26
|
+
"author": {
|
|
27
|
+
"name": "Syncfusion Inc."
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/syncfusion/ej2-angular-ui-components/issues"
|
|
31
|
+
},
|
|
32
|
+
"bundleDependencies": false,
|
|
8
33
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~30.1.37",
|
|
10
34
|
"@syncfusion/ej2-angular-base": "~30.1.37",
|
|
35
|
+
"@syncfusion/ej2-base": "~30.1.37",
|
|
11
36
|
"@syncfusion/ej2-progressbar": "30.1.37"
|
|
12
37
|
},
|
|
13
|
-
"
|
|
38
|
+
"deprecated": false,
|
|
39
|
+
"description": "Essential JS 2 ProgressBar Component for Angular",
|
|
40
|
+
"es2020": "fesm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
41
|
+
"esm2020": "esm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
42
|
+
"exports": {
|
|
43
|
+
"./package.json": {
|
|
44
|
+
"default": "./package.json"
|
|
45
|
+
},
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./syncfusion-ej2-angular-progressbar.d.ts",
|
|
48
|
+
"esm2020": "./esm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
49
|
+
"es2020": "./fesm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
50
|
+
"es2015": "./fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
51
|
+
"node": "./fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
52
|
+
"default": "./fesm2020/syncfusion-ej2-angular-progressbar.mjs"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"fesm2015": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
56
|
+
"fesm2020": "fesm2020/syncfusion-ej2-angular-progressbar.mjs",
|
|
57
|
+
"homepage": "https://www.syncfusion.com/angular-components",
|
|
14
58
|
"keywords": [
|
|
15
59
|
"angular",
|
|
16
60
|
"ng-progressbar",
|
|
@@ -18,15 +62,15 @@
|
|
|
18
62
|
"ej2-ng-progressbar",
|
|
19
63
|
"ej2-angular-progressbar"
|
|
20
64
|
],
|
|
65
|
+
"license": "SEE LICENSE IN license",
|
|
66
|
+
"module": "fesm2015/syncfusion-ej2-angular-progressbar.mjs",
|
|
67
|
+
"name": "@syncfusion/ej2-angular-progressbar",
|
|
21
68
|
"repository": {
|
|
22
69
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
70
|
+
"url": "git+https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
24
71
|
},
|
|
72
|
+
"schematics": "./schematics/collection.json",
|
|
25
73
|
"sideEffects": false,
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"es2015": "@syncfusion/ej2-angular-progressbar.js",
|
|
29
|
-
"typings": "ej2-angular-progressbar.d.ts",
|
|
30
|
-
"metadata": "ej2-angular-progressbar.metadata.json",
|
|
31
|
-
"homepage": "https://www.syncfusion.com/angular-components"
|
|
74
|
+
"typings": "syncfusion-ej2-angular-progressbar.d.ts",
|
|
75
|
+
"version": "30.1.37"
|
|
32
76
|
}
|
package/public_api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/index';
|
|
1
|
+
export * from './src/index';
|
package/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './progressbar/annotations.directive';
|
|
2
|
-
export { RangeColorDirective, RangeColorsDirective } from './progressbar/rangecolors.directive';
|
|
3
|
-
export { ProgressBarComponent } from './progressbar/progressbar.component';
|
|
4
|
-
export { ProgressBarModule } from './progressbar/progressbar.module';
|
|
5
|
-
export { ProgressBarAllModule, ProgressAnnotationService, ProgressTooltipService } from './progressbar/progressbar-all.module';
|
|
6
|
-
export * from '@syncfusion/ej2-progressbar';
|
|
1
|
+
export { ProgressBarAnnotationDirective, ProgressBarAnnotationsDirective } from './progressbar/annotations.directive';
|
|
2
|
+
export { RangeColorDirective, RangeColorsDirective } from './progressbar/rangecolors.directive';
|
|
3
|
+
export { ProgressBarComponent } from './progressbar/progressbar.component';
|
|
4
|
+
export { ProgressBarModule } from './progressbar/progressbar.module';
|
|
5
|
+
export { ProgressBarAllModule, ProgressAnnotationService, ProgressTooltipService } from './progressbar/progressbar-all.module';
|
|
6
|
+
export * from '@syncfusion/ej2-progressbar';
|
|
@@ -1,37 +1,42 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* <e-progressbar-
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
*
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
*
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
*
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* ProgressBarAnnotations Directive
|
|
6
|
+
* ```html
|
|
7
|
+
* <e-progressbar-annotations>
|
|
8
|
+
* <e-progressbar-annotation></e-progressbar-annotation>
|
|
9
|
+
* </e-progressbar-annotations>
|
|
10
|
+
* ```
|
|
11
|
+
*/
|
|
12
|
+
export declare class ProgressBarAnnotationDirective extends ComplexBase<ProgressBarAnnotationDirective> {
|
|
13
|
+
private viewContainerRef;
|
|
14
|
+
directivePropList: any;
|
|
15
|
+
/**
|
|
16
|
+
* to move annotation
|
|
17
|
+
* @default 0
|
|
18
|
+
*/
|
|
19
|
+
annotationAngle: any;
|
|
20
|
+
/**
|
|
21
|
+
* to move annotation
|
|
22
|
+
* @default '0%'
|
|
23
|
+
*/
|
|
24
|
+
annotationRadius: any;
|
|
25
|
+
/**
|
|
26
|
+
* Content of the annotation, which accepts the id of the custom element.
|
|
27
|
+
* @default null
|
|
28
|
+
*/
|
|
29
|
+
content: any;
|
|
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"]>;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* ProgressBarAnnotation Array Directive
|
|
36
|
+
* @private
|
|
37
|
+
*/
|
|
38
|
+
export declare class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {
|
|
39
|
+
constructor();
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarAnnotationsDirective, never>;
|
|
41
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ProgressBarAnnotationsDirective, "ej-progressbar>e-progressbar-annotations", never, {}, {}, ["children"]>;
|
|
42
|
+
}
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
+
export declare const ProgressAnnotationService: ValueProvider;
|
|
6
|
+
export declare const ProgressTooltipService: ValueProvider;
|
|
7
|
+
/**
|
|
8
|
+
* NgModule definition for the ProgressBar component with providers.
|
|
9
|
+
*/
|
|
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>;
|
|
14
|
+
}
|
|
@@ -1,44 +1,47 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { ProgressBar } from '@syncfusion/ej2-progressbar';
|
|
4
|
-
import { ProgressBarAnnotationsDirective } from './annotations.directive';
|
|
5
|
-
import { RangeColorsDirective } from './rangecolors.directive';
|
|
6
|
-
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { ProgressBar } from '@syncfusion/ej2-progressbar';
|
|
4
|
+
import { ProgressBarAnnotationsDirective } from './annotations.directive';
|
|
5
|
+
import { RangeColorsDirective } from './rangecolors.directive';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare const inputs: string[];
|
|
8
|
+
export declare const outputs: string[];
|
|
9
|
+
export declare const twoWays: string[];
|
|
10
|
+
/**
|
|
11
|
+
* ProgressBar Component
|
|
12
|
+
* ```html
|
|
13
|
+
* <ejsprogressbar></ejsprogressbar>
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare class ProgressBarComponent extends ProgressBar implements IComponentBase {
|
|
17
|
+
private ngEle;
|
|
18
|
+
private srenderer;
|
|
19
|
+
private viewContainerRef;
|
|
20
|
+
private injector;
|
|
21
|
+
context: any;
|
|
22
|
+
tagObjects: any;
|
|
23
|
+
animationComplete: any;
|
|
24
|
+
load: any;
|
|
25
|
+
loaded: any;
|
|
26
|
+
mouseClick: any;
|
|
27
|
+
mouseDown: any;
|
|
28
|
+
mouseLeave: any;
|
|
29
|
+
mouseMove: any;
|
|
30
|
+
mouseUp: any;
|
|
31
|
+
progressCompleted: any;
|
|
32
|
+
textRender: any;
|
|
33
|
+
tooltipRender: any;
|
|
34
|
+
valueChanged: any;
|
|
35
|
+
childAnnotations: QueryList<ProgressBarAnnotationsDirective>;
|
|
36
|
+
childRangeColors: QueryList<RangeColorsDirective>;
|
|
37
|
+
tags: string[];
|
|
38
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
39
|
+
ngOnInit(): void;
|
|
40
|
+
ngAfterViewInit(): void;
|
|
41
|
+
ngOnDestroy(): void;
|
|
42
|
+
ngAfterContentChecked(): void;
|
|
43
|
+
registerEvents: (eventList: string[]) => void;
|
|
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>;
|
|
47
|
+
}
|
|
@@ -1,5 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
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 "./rangecolors.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
/**
|
|
7
|
+
* NgModule definition for the ProgressBar component.
|
|
8
|
+
*/
|
|
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>;
|
|
13
|
+
}
|
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
*
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RangeColorDirective extends ComplexBase<RangeColorDirective> {
|
|
5
|
+
private viewContainerRef;
|
|
6
|
+
directivePropList: any;
|
|
7
|
+
/**
|
|
8
|
+
* color
|
|
9
|
+
* @default null
|
|
10
|
+
*/
|
|
11
|
+
color: any;
|
|
12
|
+
/**
|
|
13
|
+
* end
|
|
14
|
+
* @default null
|
|
15
|
+
*/
|
|
16
|
+
end: any;
|
|
17
|
+
/**
|
|
18
|
+
* start
|
|
19
|
+
* @default null
|
|
20
|
+
*/
|
|
21
|
+
start: any;
|
|
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>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* RangeColor Array Directive
|
|
28
|
+
* @private
|
|
29
|
+
*/
|
|
30
|
+
export declare class RangeColorsDirective extends ArrayBase<RangeColorsDirective> {
|
|
31
|
+
constructor();
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RangeColorsDirective, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeColorsDirective, "ejs-progressbar>e-rangecolors", never, {}, {}, ["children"]>;
|
|
34
|
+
}
|