@syncfusion/ej2-angular-progressbar 31.1.22 → 31.2.2-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.
Files changed (35) hide show
  1. package/@syncfusion/ej2-angular-progressbar.es5.js +331 -0
  2. package/@syncfusion/ej2-angular-progressbar.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-progressbar.js +299 -0
  4. package/@syncfusion/ej2-angular-progressbar.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-progressbar.umd.js +382 -0
  7. package/dist/ej2-angular-progressbar.umd.js.map +1 -0
  8. package/dist/ej2-angular-progressbar.umd.min.js +11 -0
  9. package/dist/ej2-angular-progressbar.umd.min.js.map +1 -0
  10. package/ej2-angular-progressbar.d.ts +5 -0
  11. package/ej2-angular-progressbar.metadata.json +1 -0
  12. package/package.json +10 -23
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/index.d.ts +6 -6
  17. package/src/progressbar/annotations.directive.d.ts +37 -42
  18. package/src/progressbar/progressbar-all.module.d.ts +8 -14
  19. package/src/progressbar/progressbar.component.d.ts +44 -47
  20. package/src/progressbar/progressbar.module.d.ts +5 -13
  21. package/src/progressbar/rangecolors.directive.d.ts +29 -34
  22. package/CHANGELOG.md +0 -178
  23. package/esm2020/public_api.mjs +0 -2
  24. package/esm2020/src/index.mjs +0 -7
  25. package/esm2020/src/progressbar/annotations.directive.mjs +0 -62
  26. package/esm2020/src/progressbar/progressbar-all.module.mjs +0 -32
  27. package/esm2020/src/progressbar/progressbar.component.mjs +0 -83
  28. package/esm2020/src/progressbar/progressbar.module.mjs +0 -43
  29. package/esm2020/src/progressbar/rangecolors.directive.mjs +0 -46
  30. package/esm2020/syncfusion-ej2-angular-progressbar.mjs +0 -5
  31. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs +0 -253
  32. package/fesm2015/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  33. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs +0 -253
  34. package/fesm2020/syncfusion-ej2-angular-progressbar.mjs.map +0 -1
  35. package/syncfusion-ej2-angular-progressbar.d.ts +0 -5
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,42 +1,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
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * ProgressBarAnnotations Directive
5
+ * ```html
6
+ * <e-progressbar-annotations>
7
+ * <e-progressbar-annotation></e-progressbar-annotation>
8
+ * </e-progressbar-annotations>
9
+ * ```
10
+ */
11
+ export declare class ProgressBarAnnotationDirective extends ComplexBase<ProgressBarAnnotationDirective> {
12
+ private viewContainerRef;
13
+ directivePropList: any;
14
+ /**
15
+ * to move annotation
16
+ * @default 0
17
+ */
18
+ annotationAngle: any;
19
+ /**
20
+ * to move annotation
21
+ * @default '0%'
22
+ */
23
+ annotationRadius: any;
24
+ /**
25
+ * Content of the annotation, which accepts the id of the custom element.
26
+ * @default null
27
+ */
28
+ content: any;
29
+ constructor(viewContainerRef: ViewContainerRef);
30
+ }
31
+ /**
32
+ * ProgressBarAnnotation Array Directive
33
+ * @private
34
+ */
35
+ export declare class ProgressBarAnnotationsDirective extends ArrayBase<ProgressBarAnnotationsDirective> {
36
+ constructor();
37
+ }
@@ -1,14 +1,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
+ import { ValueProvider } from '@angular/core';
2
+ export declare const ProgressAnnotationService: ValueProvider;
3
+ export declare const ProgressTooltipService: ValueProvider;
4
+ /**
5
+ * NgModule definition for the ProgressBar component with providers.
6
+ */
7
+ export declare class ProgressBarAllModule {
8
+ }
@@ -1,47 +1,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
+ 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
+ export declare const inputs: string[];
7
+ export declare const outputs: string[];
8
+ export declare const twoWays: string[];
9
+ /**
10
+ * ProgressBar Component
11
+ * ```html
12
+ * <ejsprogressbar></ejsprogressbar>
13
+ * ```
14
+ */
15
+ export declare class ProgressBarComponent extends ProgressBar implements IComponentBase {
16
+ private ngEle;
17
+ private srenderer;
18
+ private viewContainerRef;
19
+ private injector;
20
+ context: any;
21
+ tagObjects: any;
22
+ animationComplete: any;
23
+ load: any;
24
+ loaded: any;
25
+ mouseClick: any;
26
+ mouseDown: any;
27
+ mouseLeave: any;
28
+ mouseMove: any;
29
+ mouseUp: any;
30
+ progressCompleted: any;
31
+ textRender: any;
32
+ tooltipRender: any;
33
+ valueChanged: any;
34
+ childAnnotations: QueryList<ProgressBarAnnotationsDirective>;
35
+ childRangeColors: QueryList<RangeColorsDirective>;
36
+ tags: string[];
37
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
38
+ ngOnInit(): void;
39
+ ngAfterViewInit(): void;
40
+ ngOnDestroy(): void;
41
+ ngAfterContentChecked(): void;
42
+ registerEvents: (eventList: string[]) => void;
43
+ addTwoWay: (propList: string[]) => void;
44
+ }
@@ -1,13 +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 "./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
+ /**
2
+ * NgModule definition for the ProgressBar component.
3
+ */
4
+ export declare class ProgressBarModule {
5
+ }
@@ -1,34 +1,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
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ export declare class RangeColorDirective extends ComplexBase<RangeColorDirective> {
4
+ private viewContainerRef;
5
+ directivePropList: any;
6
+ /**
7
+ * color
8
+ * @default null
9
+ */
10
+ color: any;
11
+ /**
12
+ * end
13
+ * @default null
14
+ */
15
+ end: any;
16
+ /**
17
+ * start
18
+ * @default null
19
+ */
20
+ start: any;
21
+ constructor(viewContainerRef: ViewContainerRef);
22
+ }
23
+ /**
24
+ * RangeColor Array Directive
25
+ * @private
26
+ */
27
+ export declare class RangeColorsDirective extends ArrayBase<RangeColorsDirective> {
28
+ constructor();
29
+ }
package/CHANGELOG.md DELETED
@@ -1,178 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### ProgressBar
6
-
7
- #### Bug Fixes
8
-
9
- - `#I766694` - The CSP warning message will no longer be shown when using a nonce.
10
-
11
- ## 31.1.17 (2025-09-05)
12
-
13
- ### ProgressBar
14
-
15
- #### Bug Fixes
16
-
17
- - `#I690917` - Now, the tooltip renders properly when updating the progress value on data binding.
18
-
19
- ## 28.2.6 (2025-02-18)
20
-
21
- ### ProgressBar
22
-
23
- #### Bug Fixes
24
-
25
- - `#I558909` - The progress bar label position is now correct when the progress value is zero.
26
-
27
- ## 28.2.4 (2025-02-04)
28
-
29
- ### ProgressBar
30
-
31
- #### Bug Fixes
32
-
33
- - `#I682906` - The progress bar label now renders correctly with the exact number of digits.
34
-
35
- ## 25.1.35 (2024-03-15)
36
-
37
- ### ProgressBar
38
-
39
- #### Bug Fixes
40
-
41
- - `#I558909` - The progress bar label now renders properly when setting the `textAlignment` as center.
42
-
43
- ## 24.2.5 (2024-02-13)
44
-
45
- ### ProgressBar
46
-
47
- #### Bug Fixes
48
-
49
- - `#I548132` - Optimized the inline style of the progress bar.
50
-
51
- ## 23.2.6 (2023-11-28)
52
-
53
- ### ProgressBar
54
-
55
- #### Bug Fixes
56
-
57
- - `#I520806` - The progress bar now renders properly when it exceeds the `maximum` value.
58
-
59
- ## 23.2.5 (2023-11-23)
60
-
61
- ### ProgressBar
62
-
63
- #### Bug Fixes
64
-
65
- - `#I520853` - The circular progress bar now renders properly for all the values.
66
-
67
- ## 23.1.38 (2023-09-26)
68
-
69
- ### ProgressBar
70
-
71
- #### Bug Fixes
72
-
73
- - `#I501894` - Now, the linear progress bar label renders properly when the alignment is set to center.
74
-
75
- ## 21.1.37 (2023-03-29)
76
-
77
- ### ProgressBar
78
-
79
- #### Bug Fixes
80
-
81
- - `#F180771` - The progress bar range color issue has been resolved.
82
-
83
- ## 21.1.35 (2023-03-23)
84
-
85
- ### ProgressBar
86
-
87
- #### New Features
88
-
89
- - `#I386691` - Provided support to display tooltips during initial load of progress bars and mouse hover with numeric or text values of the progress.
90
- - Provided support to customize the width and color of the secondary progress bar.
91
-
92
- ## 20.4.38 (2022-12-21)
93
-
94
- ### ProgressBar
95
-
96
- #### Bug Fixes
97
-
98
- - `#I420052` - Now progress bar API reference are refreshing properly.
99
-
100
- ## 20.3.57 (2022-11-15)
101
-
102
- ### ProgressBar
103
-
104
- #### Bug Fixes
105
-
106
- - `#I416343` - Now corner radius is applied when applying the range colors for Progress bar.
107
-
108
- ## 20.3.56 (2022-11-08)
109
-
110
- ### ProgressBar
111
-
112
- #### Bug Fixes
113
-
114
- - `#I414756` - Now animation duration is working properly for indeterminate mode.
115
-
116
- ## 19.1.54 (2021-03-30)
117
-
118
- ### ProgressBar
119
-
120
- #### Bug Fixes
121
-
122
- - `#F159325` - ProgressBar renders inside the Grid with out any console error.
123
-
124
- ## 18.2.47 (2020-07-28)
125
-
126
- ### ProgressBar
127
-
128
- #### Bug Fixes
129
-
130
- - `#156094` - ShowProgressValue is now working properly on dynamic update.
131
-
132
- ## 18.2.46 (2020-07-21)
133
-
134
- ### ProgressBar
135
-
136
- #### Bug Fixes
137
-
138
- - `#16027` - Progress bar not updating when initially having value null or zero issue fixed.
139
-
140
- ## 18.2.45 (2020-07-14)
141
-
142
- ### ProgressBar
143
-
144
- #### New Features
145
-
146
- - Provided support to indicate the active state of the progress.
147
- - Provided support for striped progress bar.
148
- - Provided support to place the labels at the center and far ends of the track.
149
- - Provided support to segment the progress of a task.
150
- - Provided support to indicate success, info, warning, and danger of using different colors.
151
-
152
- #### Bug Fixes
153
-
154
- - Progress bar label not render at end of the progress has been fixed.
155
- - SetAttribute of undefined issue raised when calling show() method has been fixed.
156
-
157
- ## 18.2.44 (2020-07-07)
158
-
159
- ### ProgressBar
160
-
161
- #### Bug Fixes
162
-
163
- - Progress bar label not render at end of the progress has been fixed.
164
-
165
- undefinedThe progress bar provides a customizable visual to indicate the progress of a task with different shape such as rectangle and circle.## 18.1.42 (2020-04-01)
166
-
167
- ### ProgressBar
168
-
169
- ProgressBar control is used to visualize the changing status of an extended operation such as a download, file transfer, or installation. All Progress bar elements are rendered by using Scalable Vector Graphics (SVG).
170
-
171
- ### Key features
172
-
173
- - Visualizes the progress in different shapes, such as rectangle and circle.
174
- - Customizes the ranges with different colors.
175
- - Customizes the progress and tracks thickness.
176
- - Displays the custom content at the center of the circular progress bar.
177
- - Visualizes the progress in segments.
178
- - Customizes the angle of the circular progress bar.
@@ -1,2 +0,0 @@
1
- export * from './src/index';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
@@ -1,7 +0,0 @@
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';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLDhCQUE4QixFQUFDLCtCQUErQixFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDbkgsT0FBTyxFQUFDLG1CQUFtQixFQUFDLG9CQUFvQixFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDN0YsT0FBTyxFQUFFLG9CQUFvQixFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDMUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDckUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLHlCQUF5QixFQUFFLHNCQUFzQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDL0gsY0FBYyw2QkFBNkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7UHJvZ3Jlc3NCYXJBbm5vdGF0aW9uRGlyZWN0aXZlLFByb2dyZXNzQmFyQW5ub3RhdGlvbnNEaXJlY3RpdmV9IGZyb20gJy4vcHJvZ3Jlc3NiYXIvYW5ub3RhdGlvbnMuZGlyZWN0aXZlJztcbmV4cG9ydCB7UmFuZ2VDb2xvckRpcmVjdGl2ZSxSYW5nZUNvbG9yc0RpcmVjdGl2ZX0gZnJvbSAnLi9wcm9ncmVzc2Jhci9yYW5nZWNvbG9ycy5kaXJlY3RpdmUnO1xuZXhwb3J0IHsgUHJvZ3Jlc3NCYXJDb21wb25lbnR9IGZyb20gJy4vcHJvZ3Jlc3NiYXIvcHJvZ3Jlc3NiYXIuY29tcG9uZW50JztcbmV4cG9ydCB7IFByb2dyZXNzQmFyTW9kdWxlIH0gZnJvbSAnLi9wcm9ncmVzc2Jhci9wcm9ncmVzc2Jhci5tb2R1bGUnO1xuZXhwb3J0IHsgUHJvZ3Jlc3NCYXJBbGxNb2R1bGUsIFByb2dyZXNzQW5ub3RhdGlvblNlcnZpY2UsIFByb2dyZXNzVG9vbHRpcFNlcnZpY2UgfSBmcm9tICcuL3Byb2dyZXNzYmFyL3Byb2dyZXNzYmFyLWFsbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnQHN5bmNmdXNpb24vZWoyLXByb2dyZXNzYmFyJzsiXX0=
@@ -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+IHtcbiAgICBwdWJsaWMgZGlyZWN0aXZlUHJvcExpc3Q6IGFueTtcblx0XG5cblxuICAgIC8qKiBcbiAgICAgKiB0byBtb3ZlIGFubm90YXRpb25cbiAgICAgKiBAZGVmYXVsdCAwXG4gICAgICovXG4gICAgcHVibGljIGFubm90YXRpb25BbmdsZTogYW55O1xuICAgIC8qKiBcbiAgICAgKiB0byBtb3ZlIGFubm90YXRpb25cbiAgICAgKiBAZGVmYXVsdCAnMCUnXG4gICAgICovXG4gICAgcHVibGljIGFubm90YXRpb25SYWRpdXM6IGFueTtcbiAgICAvKiogXG4gICAgICogQ29udGVudCBvZiB0aGUgYW5ub3RhdGlvbiwgd2hpY2ggYWNjZXB0cyB0aGUgaWQgb2YgdGhlIGN1c3RvbSBlbGVtZW50LlxuICAgICAqIEBkZWZhdWx0IG51bGxcbiAgICAgKi9cbiAgICBAQ29udGVudENoaWxkKCdjb250ZW50JylcbiAgICBAVGVtcGxhdGUoKVxuICAgIHB1YmxpYyBjb250ZW50OiBhbnk7XG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIHZpZXdDb250YWluZXJSZWY6Vmlld0NvbnRhaW5lclJlZikge1xuICAgICAgICBzdXBlcigpO1xuICAgICAgICBzZXRWYWx1ZSgnY3VycmVudEluc3RhbmNlJywgdGhpcywgdGhpcy52aWV3Q29udGFpbmVyUmVmKTtcbiAgICAgICAgdGhpcy5yZWdpc3RlckV2ZW50cyhvdXRwdXRzKTtcbiAgICAgICAgdGhpcy5kaXJlY3RpdmVQcm9wTGlzdCA9IGlucHV0O1xuICAgIH1cbn1cblxuLyoqXG4gKiBQcm9ncmVzc0JhckFubm90YXRpb24gQXJyYXkgRGlyZWN0aXZlXG4gKiBAcHJpdmF0ZVxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ2VqLXByb2dyZXNzYmFyPmUtcHJvZ3Jlc3NiYXItYW5ub3RhdGlvbnMnLFxuICAgIHF1ZXJpZXM6IHtcbiAgICAgICAgY2hpbGRyZW46IG5ldyBDb250ZW50Q2hpbGRyZW4oUHJvZ3Jlc3NCYXJBbm5vdGF0aW9uRGlyZWN0aXZlKVxuICAgIH0sXG59KVxuZXhwb3J0IGNsYXNzIFByb2dyZXNzQmFyQW5ub3RhdGlvbnNEaXJlY3RpdmUgZXh0ZW5kcyBBcnJheUJhc2U8UHJvZ3Jlc3NCYXJBbm5vdGF0aW9uc0RpcmVjdGl2ZT4ge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlcignYW5ub3RhdGlvbnMnKTtcbiAgICB9XG59Il19
@@ -1,32 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ProgressBarModule } from './progressbar.module';
4
- import { ProgressAnnotation, ProgressTooltip } from '@syncfusion/ej2-progressbar';
5
- import * as i0 from "@angular/core";
6
- export const ProgressAnnotationService = { provide: 'ProgressBarProgressAnnotation', useValue: ProgressAnnotation };
7
- export const ProgressTooltipService = { provide: 'ProgressBarProgressTooltip', useValue: ProgressTooltip };
8
- /**
9
- * NgModule definition for the ProgressBar component with providers.
10
- */
11
- export class ProgressBarAllModule {
12
- }
13
- ProgressBarAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
14
- ProgressBarAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, imports: [CommonModule, ProgressBarModule], exports: [ProgressBarModule] });
15
- ProgressBarAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, providers: [
16
- ProgressAnnotationService,
17
- ProgressTooltipService
18
- ], imports: [[CommonModule, ProgressBarModule], ProgressBarModule] });
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ProgressBarAllModule, decorators: [{
20
- type: NgModule,
21
- args: [{
22
- imports: [CommonModule, ProgressBarModule],
23
- exports: [
24
- ProgressBarModule
25
- ],
26
- providers: [
27
- ProgressAnnotationService,
28
- ProgressTooltipService
29
- ]
30
- }]
31
- }] });
32
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3NiYXItYWxsLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9wcm9ncmVzc2Jhci9wcm9ncmVzc2Jhci1hbGwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQWlCLE1BQU0sZUFBZSxDQUFDO0FBQ3hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUkvQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN6RCxPQUFPLEVBQUMsa0JBQWtCLEVBQUUsZUFBZSxFQUFDLE1BQU0sNkJBQTZCLENBQUE7O0FBRy9FLE1BQU0sQ0FBQyxNQUFNLHlCQUF5QixHQUFrQixFQUFFLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxRQUFRLEVBQUUsa0JBQWtCLEVBQUMsQ0FBQztBQUNsSSxNQUFNLENBQUMsTUFBTSxzQkFBc0IsR0FBa0IsRUFBRSxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsUUFBUSxFQUFFLGVBQWUsRUFBQyxDQUFDO0FBRXpIOztHQUVHO0FBV0gsTUFBTSxPQUFPLG9CQUFvQjs7aUhBQXBCLG9CQUFvQjtrSEFBcEIsb0JBQW9CLFlBVG5CLFlBQVksRUFBRSxpQkFBaUIsYUFFckMsaUJBQWlCO2tIQU9aLG9CQUFvQixhQUxuQjtRQUNOLHlCQUF5QjtRQUN6QixzQkFBc0I7S0FDekIsWUFQUSxDQUFDLFlBQVksRUFBRSxpQkFBaUIsQ0FBQyxFQUV0QyxpQkFBaUI7MkZBT1osb0JBQW9CO2tCQVZoQyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxpQkFBaUIsQ0FBQztvQkFDMUMsT0FBTyxFQUFFO3dCQUNMLGlCQUFpQjtxQkFDcEI7b0JBQ0QsU0FBUyxFQUFDO3dCQUNOLHlCQUF5Qjt3QkFDekIsc0JBQXNCO3FCQUN6QjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlLCBWYWx1ZVByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUHJvZ3Jlc3NCYXJBbm5vdGF0aW9uRGlyZWN0aXZlLCBQcm9ncmVzc0JhckFubm90YXRpb25zRGlyZWN0aXZlIH0gZnJvbSAnLi9hbm5vdGF0aW9ucy5kaXJlY3RpdmUnO1xuaW1wb3J0IHsgUmFuZ2VDb2xvckRpcmVjdGl2ZSwgUmFuZ2VDb2xvcnNEaXJlY3RpdmUgfSBmcm9tICcuL3JhbmdlY29sb3JzLmRpcmVjdGl2ZSc7XG5pbXBvcnQgeyBQcm9ncmVzc0JhckNvbXBvbmVudCB9IGZyb20gJy4vcHJvZ3Jlc3NiYXIuY29tcG9uZW50JztcbmltcG9ydCB7IFByb2dyZXNzQmFyTW9kdWxlIH0gZnJvbSAnLi9wcm9ncmVzc2Jhci5tb2R1bGUnO1xuaW1wb3J0IHtQcm9ncmVzc0Fubm90YXRpb24sIFByb2dyZXNzVG9vbHRpcH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLXByb2dyZXNzYmFyJ1xuXG5cbmV4cG9ydCBjb25zdCBQcm9ncmVzc0Fubm90YXRpb25TZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUHJvZ3Jlc3NCYXJQcm9ncmVzc0Fubm90YXRpb24nLCB1c2VWYWx1ZTogUHJvZ3Jlc3NBbm5vdGF0aW9ufTtcbmV4cG9ydCBjb25zdCBQcm9ncmVzc1Rvb2x0aXBTZXJ2aWNlOiBWYWx1ZVByb3ZpZGVyID0geyBwcm92aWRlOiAnUHJvZ3Jlc3NCYXJQcm9ncmVzc1Rvb2x0aXAnLCB1c2VWYWx1ZTogUHJvZ3Jlc3NUb29sdGlwfTtcblxuLyoqXG4gKiBOZ01vZHVsZSBkZWZpbml0aW9uIGZvciB0aGUgUHJvZ3Jlc3NCYXIgY29tcG9uZW50IHdpdGggcHJvdmlkZXJzLlxuICovXG5ATmdNb2R1bGUoe1xuICAgIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIFByb2dyZXNzQmFyTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFByb2dyZXNzQmFyTW9kdWxlXG4gICAgXSxcbiAgICBwcm92aWRlcnM6W1xuICAgICAgICBQcm9ncmVzc0Fubm90YXRpb25TZXJ2aWNlLFxuICAgICAgICBQcm9ncmVzc1Rvb2x0aXBTZXJ2aWNlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBQcm9ncmVzc0JhckFsbE1vZHVsZSB7IH0iXX0=